We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
sample.py
1 parent 5503c47 commit 814a4c1Copy full SHA for 814a4c1
2 files changed
example/sample.py
rekcurd_client/core/rekcurd_worker_client.py
@@ -60,7 +60,7 @@ def __init__(self, host: str = None, port: int = None,
60
('x-rekcurd-sevice-level', service_level),
61
('x-rekcurd-grpc-version', rekcurd_grpc_version)]
62
63
- channel = grpc.insecure_channel("{}:{}".format(host, port))
+ channel = grpc.insecure_channel("{0}:{1}".format(host, port))
64
self.stub = rekcurd_pb2_grpc.RekcurdWorkerStub(channel)
65
66
@property
0 commit comments