We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3797256 commit 1fd0e42Copy full SHA for 1fd0e42
2 files changed
drift/instrumentation/grpc/e2e-tests/requirements.txt
@@ -2,4 +2,4 @@
2
Flask>=3.1.2
3
grpcio>=1.60.0
4
grpcio-tools>=1.60.0
5
-protobuf>=4.25.0
+protobuf>=6.0
drift/instrumentation/grpc/e2e-tests/src/app.py
@@ -142,8 +142,8 @@ def greet_with_call():
142
return jsonify(
143
{
144
"message": response.message,
145
- "has_initial_metadata": len(initial_metadata) >= 0,
146
- "has_trailing_metadata": len(trailing_metadata) >= 0,
+ "has_initial_metadata": len(initial_metadata) > 0,
+ "has_trailing_metadata": len(trailing_metadata) > 0,
147
}
148
)
149
except grpc.RpcError as e:
0 commit comments