Skip to content

Commit e650b93

Browse files
committed
update default request plane to tcp
1 parent 9fb368d commit e650b93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/bindings/python/src/dynamo/runtime/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def decorator(func):
2626
@wraps(func)
2727
async def wrapper(*args, **kwargs):
2828
loop = asyncio.get_running_loop()
29-
request_plane = os.environ.get("DYN_REQUEST_PLANE", "nats")
29+
request_plane = os.environ.get("DYN_REQUEST_PLANE", "tcp")
3030
runtime = DistributedRuntime(loop, "etcd", request_plane)
3131

3232
await func(runtime, *args, **kwargs)

0 commit comments

Comments
 (0)