fix the orphaned channel due to the telemetry test (#999)

Signed-off-by: Cassandra Coyle <cassie@diagrid.io>
Co-authored-by: Artur Souza <artursouza.ms@outlook.com>
Co-authored-by: Dapr Bot <56698301+dapr-bot@users.noreply.github.com>
This commit is contained in:
Cassie Coyle 2024-02-15 16:04:20 -06:00 committed by GitHub
parent b12c399fdb
commit f22d8f8b68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

View File

@ -191,6 +191,14 @@ null,
new GrpcChannelFacade(channel, daprHTTP), asyncStub, new DefaultObjectSerializer(), new DefaultObjectSerializer());
}
@AfterEach
public void tearDown() throws Exception {
if (client != null) {
client.close();
}
}
@ParameterizedTest
@MethodSource("data")
public void invokeServiceVoidWithTracingTest(String traceparent, String tracestate, boolean expectGrpcTraceBin) throws IOException {