Skip to content

Commit e018eae

Browse files
committed
Fix broken compilation of IGNITE-4832 commit.
1 parent 4c64568 commit e018eae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/core/src/test/java/org/apache/ignite/internal/processors/service/GridServiceProcessorAbstractSelfTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ protected void startExtraNodes(int servers, int clients) throws Exception {
134134
startExtraNodes(servers);
135135

136136
for (int i = 0; i < clients; i++) {
137-
final String nodeName = getTestGridName(nodeCount() + servers + i);
137+
final String nodeName = getTestIgniteInstanceName(nodeCount() + servers + i);
138138

139139
startGrid(nodeName, getConfiguration(nodeName).setClientMode(true));
140140
}

modules/core/src/test/java/org/apache/ignite/internal/processors/service/GridServiceProcessorMultiNodeSelfTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ public void testDeployOnEachNodeUpdateTopology() throws Exception {
210210

211211
IgniteServices svcs = g.services();
212212

213-
IgniteFuture<?> fut = svcs.deployAsync(name, new DummyService());
213+
IgniteFuture<?> fut = svcs.deployAsync(srvcCfg);
214214

215215
info("Deployed service: " + name);
216216

0 commit comments

Comments
 (0)