Skip to content

Commit ead4645

Browse files
committed
more fixes
1 parent 421a9c4 commit ead4645

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

mlflow/tests/RunClientTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ interface keyable {
66
}
77

88
async function testRunClient(): Promise<void> {
9-
const client = new RunClient('http://127.0.0.1:5000');
10-
const experimentClient = new ExperimentClient('http://127.0.0.1:5000');
9+
const client = new RunClient('http://127.0.0.1:5001');
10+
const experimentClient = new ExperimentClient('http://127.0.0.1:5001');
1111

1212
try {
1313
// createRun

mlflow/tests/RunManagerTestFile.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ interface keyable {
88

99
// test code for cleanupRuns
1010
async function testCleanupRuns(): Promise<void> {
11-
const myRunClient = new RunClient('http://127.0.0.1:5000');
12-
const myRunManager = new RunManager('http://127.0.0.1:5000');
13-
const myExperimentClient = new ExperimentClient('http://127.0.0.1:5000');
11+
const myRunClient = new RunClient('http://127.0.0.1:5001');
12+
const myRunManager = new RunManager('http://127.0.0.1:5001');
13+
const myExperimentClient = new ExperimentClient('http://127.0.0.1:5001');
1414

1515
try {
1616
// create 2 experiments
@@ -64,9 +64,9 @@ async function testCleanupRuns(): Promise<void> {
6464
// test code for copyRun
6565

6666
async function testCopyRun(): Promise<void> {
67-
const myRunClient = new RunClient('http://127.0.0.1:5000');
68-
const myRunManager = new RunManager('http://127.0.0.1:5000');
69-
const myExperimentClient = new ExperimentClient('http://127.0.0.1:5000');
67+
const myRunClient = new RunClient('http://127.0.0.1:5001');
68+
const myRunManager = new RunManager('http://127.0.0.1:5001');
69+
const myExperimentClient = new ExperimentClient('http://127.0.0.1:5001');
7070

7171
try {
7272
console.log('Testing copy run...');

0 commit comments

Comments
 (0)