wu-sheng commented on a change in pull request #4936:
URL: https://github.com/apache/skywalking/pull/4936#discussion_r443167933
##########
File path:
test/e2e/e2e-test/src/test/java/org/apache/skywalking/e2e/storage/StorageE2E.java
##########
@@ -112,8 +118,9 @@ public void tearDown() {
@RetryableTest
void services() throws Exception {
- final List<Service> services = graphql.services(new
ServicesQuery().start(startTime).end(now()));
+ List<Service> services = graphql.services(new
ServicesQuery().start(startTime).end(now()));
+ services = services.stream().filter(s ->
!s.getLabel().equals("oap-server")).collect(Collectors.toList());
Review comment:
Same question here. You have separated so11y verification.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]