Skip to content

Commit

Permalink
[hotfix] Harden the ArtifactManagerTest
Browse files Browse the repository at this point in the history
  • Loading branch information
Aitozi authored and wangyang0918 committed Apr 25, 2022
1 parent c42fb8e commit 57b2eae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public void testHttpFetch() throws Exception {
}

private HttpServer startHttpServer() throws IOException {
int port = RandomUtils.nextInt(1000, 2000);
int port = RandomUtils.nextInt(2000, 3000);
HttpServer httpServer = null;
while (httpServer == null && port <= 65536) {
try {
Expand Down

0 comments on commit 57b2eae

Please sign in to comment.