From 35afc1740aba7dd7485f2c65039725169cb2be0a Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Mon, 9 Sep 2024 07:57:49 +0100 Subject: [PATCH] correct import Signed-off-by: Chris Martin --- client/python/armada_client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/python/armada_client/client.py b/client/python/armada_client/client.py index 43c8f05a6f3..cf8357d0d52 100644 --- a/client/python/armada_client/client.py +++ b/client/python/armada_client/client.py @@ -104,7 +104,7 @@ def __init__(self, channel, event_timeout: timedelta = timedelta(minutes=15)): self.submit_stub = submit_pb2_grpc.SubmitStub(channel) self.event_stub = event_pb2_grpc.EventStub(channel) self.job_stub = job_pb2_grpc.JobsStub(channel) - self.queue_stub = submit_pb2.QueueServiceStub(channel) + self.queue_stub = submit_pb2_grpc.QueueServiceStub(channel) self.event_timeout = event_timeout def get_job_events_stream(