We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fa75d0 commit a42781cCopy full SHA for a42781c
python/restate/server_context.py
@@ -534,7 +534,7 @@ def uuid(self) -> UUID:
534
return UUID(int=self.random_instance.getrandbits(128), version=4)
535
536
def time(self) -> RestateDurableFuture[float]:
537
- return self.run_typed("timestamp", time.time)
+ return self.run_typed("timestamp", lambda: time.time())
538
539
# pylint: disable=R0914
540
async def create_run_coroutine(self,
0 commit comments