Skip to content

Commit 05358a8

Browse files
committed
tests: Likely no difference
This test has a race condition, re-run it. Signed-off-by: Graham King <[email protected]>
1 parent 1abfc2f commit 05358a8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/custom_backend/cancellation/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async def main():
5050
return
5151

5252
loop = asyncio.get_running_loop()
53-
runtime = DistributedRuntime(loop, "etcd", True)
53+
runtime = DistributedRuntime(loop, "etcd", False)
5454

5555
# Connect to middle server or direct server based on argument
5656
if use_middle_server:

examples/custom_backend/cancellation/middle_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ async def generate(self, request, context):
5050
async def main():
5151
"""Start the middle server"""
5252
loop = asyncio.get_running_loop()
53-
runtime = DistributedRuntime(loop, "etcd", True)
53+
runtime = DistributedRuntime(loop, "etcd", False)
5454

5555
# Create middle server handler
5656
handler = MiddleServer(runtime)

examples/custom_backend/cancellation/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async def generate(self, request, context):
3131
async def main():
3232
"""Start the demo server"""
3333
loop = asyncio.get_running_loop()
34-
runtime = DistributedRuntime(loop, "etcd", True)
34+
runtime = DistributedRuntime(loop, "etcd", False)
3535

3636
# Create server component
3737
component = runtime.namespace("demo").component("server")

0 commit comments

Comments
 (0)