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 7ffac2c commit 96d39c3Copy full SHA for 96d39c3
tests/worker/test_workflow.py
@@ -6128,7 +6128,9 @@ async def this_signal_executes_second(self):
6128
raise ApplicationError("Client should never see this error!")
6129
6130
async def ping_pong(self, cond: Callable[[], bool]):
6131
- workflow.logger.info("Ping pong: %d of %d", self.ping_pong_counter, self.ping_pong_max_count)
+ workflow.logger.info(
6132
+ "Ping pong: %d of %d", self.ping_pong_counter, self.ping_pong_max_count
6133
+ )
6134
while self.ping_pong_counter < self.ping_pong_max_count:
6135
workflow.logger.info("Ping pong wait: %d", self.ping_pong_counter)
6136
await workflow.wait_condition(cond)
0 commit comments