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 ee3cf7a commit 7c52251Copy full SHA for 7c52251
python/restate/server_context.py
@@ -534,7 +534,8 @@ 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)
+ # pylint: disable=W0108
538
+ return self.run_typed("timestamp", lambda: time.time())
539
540
# pylint: disable=R0914
541
async def create_run_coroutine(self,
0 commit comments