Skip to content

Commit

Permalink
fixup: python test
Browse files Browse the repository at this point in the history
  • Loading branch information
eugeneo committed Jan 19, 2024
1 parent 3b40269 commit 7cf67a5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/python/grpcio_csds/grpc_csds/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,7 @@ class ClientStatusDiscoveryServiceServicer(

@staticmethod
def FetchClientStatus(request, unused_context):
client_config = csds_pb2.ClientConfig.FromString(
cygrpc.dump_xds_configs()
)
response = csds_pb2.ClientStatusResponse()
response.config.append(client_config)
return response
return csds_pb2.ClientStatusResponse.FromString(cygrpc.dump_xds_configs())

@staticmethod
def StreamClientStatus(request_iterator, context):
Expand Down

0 comments on commit 7cf67a5

Please sign in to comment.