Skip to content
This repository has been archived by the owner on Jun 28, 2022. It is now read-only.

Commit

Permalink
python: fix channel options (#2905)
Browse files Browse the repository at this point in the history
  • Loading branch information
noahdietz authored Aug 2, 2019
1 parent 8f27258 commit a0c166d
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4279,7 +4279,7 @@ class LibraryServiceGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down Expand Up @@ -4783,7 +4783,7 @@ class MyProtoGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ class DecrementerServiceGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down Expand Up @@ -1560,7 +1560,7 @@ class IncrementerServiceGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1121,7 +1121,7 @@ class NoTemplatesApiServiceGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4270,7 +4270,7 @@ class LibraryServiceGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down Expand Up @@ -4774,7 +4774,7 @@ class MyProtoGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4272,7 +4272,7 @@ class LibraryServiceGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down Expand Up @@ -4776,7 +4776,7 @@ class MyProtoGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3781,7 +3781,7 @@ class LibraryServiceGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down Expand Up @@ -4280,7 +4280,7 @@ class MyProtoGrpcTransport(object):
options={
'grpc.max_send_message_length': -1,
'grpc.max_receive_message_length': -1,
},
}.items(),
)

self._channel = channel
Expand Down

0 comments on commit a0c166d

Please sign in to comment.