Skip to content

Commit 2b305bc

Browse files
committed
re-enabled /fetch
1 parent b66c771 commit 2b305bc

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

jdk_8_maven/em/embedded/rest/catwatch/src/main/java/em/embedded/org/zalando/EmbeddedEvoMasterController.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,7 @@ public void resetStateOfSUT() {
114114
public ProblemInfo getProblemInfo() {
115115
return new RestProblem(
116116
"http://localhost:" + getSutPort() + "/v2/api-docs",
117-
//TODO /fetch relies on accessing Github, and it is veryyyy slow.
118-
// Need to handle WireMock
119-
Arrays.asList("/fetch", "/health", "/health.json", "/error")
117+
Arrays.asList("/health", "/health.json", "/error")
120118
);
121119
}
122120

jdk_8_maven/em/external/rest/catwatch/src/main/java/em/external/org/zalando/ExternalEvoMasterController.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -191,9 +191,7 @@ public String getPackagePrefixesToCover() {
191191
public ProblemInfo getProblemInfo() {
192192
return new RestProblem(
193193
getBaseURL() + "/v2/api-docs",
194-
//TODO /fetch relies on accessing Github, and it is veryyyy slow.
195-
// Need to handle WireMock
196-
Arrays.asList("/fetch", "/health", "/health.json", "/error")
194+
Arrays.asList("/health", "/health.json", "/error")
197195
);
198196
}
199197

0 commit comments

Comments
 (0)