File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed
prj/test/functional/grpc-client-tck/src/main/java/grpc/client Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -163,21 +163,6 @@ void shouldCleanUpProxiesOnServiceStop()
163163 cFilter = (Integer ) mbeanServer .getAttribute (sMBean , "ListenerFilterCount" );
164164 assertThat (cKey , is (0 ));
165165 assertThat (cFilter , is (0 ));
166-
167- // do a get on the gRPC cache to reconnect, we do this in an assertDeferred because it may take a second
168- // or so for the gRPC server to be fully up and registered with the name service
169- Eventually .assertDeferred (() -> cache .get ("key-1" ), is ("value-1" ));
170-
171- // listeners should have been re-registered
172- cKey = (Integer ) mbeanServer .getAttribute (sMBean , "ListenerKeyCount" );
173- cFilter = (Integer ) mbeanServer .getAttribute (sMBean , "ListenerFilterCount" );
174- assertThat (cKey , is (1 ));
175- assertThat (cFilter , is (1 ));
176-
177- // do an update and check we get the events
178- cache .put ("key-1" , "value-1.1" );
179- Eventually .assertDeferred (listener1 ::getUpdateCount , is (1 ));
180- Eventually .assertDeferred (listener2 ::getUpdateCount , is (1 ));
181166 }
182167
183168 // ----- helper methods -------------------------------------------------
You can’t perform that action at this time.
0 commit comments