diff --git a/python/example_client.py b/python/example_client.py index 5d27a6c..d95542d 100644 --- a/python/example_client.py +++ b/python/example_client.py @@ -23,11 +23,11 @@ def fib(x): def run(): - # out = fact.remote(5) - # out2 = fact.remote(out) - # print("Got fact: ", ray.get(out2)) + out = fact.remote(5) + out2 = fact.remote(out) + print("Got fact: ", ray.get(out2)) fib_out = fib.remote(6) - # print("Fib out:", ray.get(fib_out)) + print("Fib out:", ray.get(fib_out)) if __name__ == "__main__":