Skip to content

Commit 4e9c4a5

Browse files
authored
Fix intermittent build failures (#8312)
1 parent 88f64de commit 4e9c4a5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

plugins/backup/networker/src/test/java/org/apache/backup/networker/NetworkerClientTest.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
public class NetworkerClientTest {
4747
private final String adminUsername = "administrator";
4848
private final String adminPassword = "password";
49-
private final int port = 9399;
49+
private final int port = 9400;
5050
private final String url = "http://localhost:" + port + "/nwrestapi/v3";
5151
private NetworkerClient client;
5252
@Rule
@@ -87,7 +87,7 @@ public void testListPolicies() {
8787
" \"comment\": \"-CSBKP-\",\n" +
8888
" \"links\": [\n" +
8989
" {\n" +
90-
" \"href\": \"http://localhost:9399/nwrestapi/v3/global/protectionpolicies/CSBRONZE\",\n" +
90+
" \"href\": \"http://localhost:9400/nwrestapi/v3/global/protectionpolicies/CSBRONZE\",\n" +
9191
" \"rel\": \"item\"\n" +
9292
" }\n" +
9393
" ],\n" +
@@ -108,7 +108,7 @@ public void testListPolicies() {
108108
" \"comment\": \"-CSBKP-\",\n" +
109109
" \"links\": [\n" +
110110
" {\n" +
111-
" \"href\": \"http://localhost:9399/nwrestapi/v3/global/protectionpolicies/CSGOLD\",\n" +
111+
" \"href\": \"http://localhost:9400/nwrestapi/v3/global/protectionpolicies/CSGOLD\",\n" +
112112
" \"rel\": \"item\"\n" +
113113
" }\n" +
114114
" ],\n" +
@@ -129,7 +129,7 @@ public void testListPolicies() {
129129
" \"comment\": \"-CSBKP-\",\n" +
130130
" \"links\": [\n" +
131131
" {\n" +
132-
" \"href\": \"http://localhost:9399/nwrestapi/v3/global/protectionpolicies/CSSILVER\",\n" +
132+
" \"href\": \"http://localhost:9400/nwrestapi/v3/global/protectionpolicies/CSSILVER\",\n" +
133133
" \"rel\": \"item\"\n" +
134134
" }\n" +
135135
" ],\n" +
@@ -210,7 +210,7 @@ public void testListBackupForVM() {
210210
" \"level\": \"Manual\",\n" +
211211
" \"links\": [\n" +
212212
" {\n" +
213-
" \"href\": \"http://localhost:9399/nwrestapi/v3/global/backups/6034732f-00000006-7acd14e3-62cd14e3-00871500-5a80015d\",\n" +
213+
" \"href\": \"http://localhost:9400/nwrestapi/v3/global/backups/6034732f-00000006-7acd14e3-62cd14e3-00871500-5a80015d\",\n" +
214214
" \"rel\": \"item\"\n" +
215215
" }\n" +
216216
" ],\n" +
@@ -271,7 +271,7 @@ public void testListBackupForVM() {
271271
" \"level\": \"Manual\",\n" +
272272
" \"links\": [\n" +
273273
" {\n" +
274-
" \"href\": \"http://localhost:9399/nwrestapi/v3/global/backups/98d29c5e-00000006-81ccda87-62ccda87-00801500-5a80015d\",\n" +
274+
" \"href\": \"http://localhost:9400/nwrestapi/v3/global/backups/98d29c5e-00000006-81ccda87-62ccda87-00801500-5a80015d\",\n" +
275275
" \"rel\": \"item\"\n" +
276276
" }\n" +
277277
" ],\n" +
@@ -332,7 +332,7 @@ public void testListBackupForVM() {
332332
" \"level\": \"Manual\",\n" +
333333
" \"links\": [\n" +
334334
" {\n" +
335-
" \"href\": \"http://localhost:9399/nwrestapi/v3/global/backups/d371d629-00000006-84ccd61b-62ccd61b-007d1500-5a80015d\",\n" +
335+
" \"href\": \"http://localhost:9400/nwrestapi/v3/global/backups/d371d629-00000006-84ccd61b-62ccd61b-007d1500-5a80015d\",\n" +
336336
" \"rel\": \"item\"\n" +
337337
" }\n" +
338338
" ],\n" +

0 commit comments

Comments
 (0)