Skip to content

Commit 9b2eff8

Browse files
committed
restore original port
1 parent 81a39f3 commit 9b2eff8

File tree

1 file changed

+3
-3
lines changed
  • java/ql/integration-tests/java/buildless-snapshot-repository

1 file changed

+3
-3
lines changed

java/ql/integration-tests/java/buildless-snapshot-repository/test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44

55
def test(codeql, java):
6-
# This serves the "repo" directory on http://localhost:9428
7-
command = ["python3", "-m", "http.server", "9428", "-b", "localhost"]
6+
# This serves the "repo" directory on http://localhost:9427
7+
command = ["python3", "-m", "http.server", "9427", "-b", "localhost"]
88
if runs_on.github_actions and runs_on.posix:
99
# On GitHub Actions, we try to run the server with higher priority
10-
command = ["nice", "-n", "10"] + command
10+
command = ["sudo", "nice", "-n", "10"] + command
1111
repo_server_process = subprocess.Popen(
1212
command, cwd="repo"
1313
)

0 commit comments

Comments
 (0)