Skip to content

Commit 435f4b3

Browse files
committed
Bug 38286229 - [build] concurrent.executor.RemoteExecutorPofIT.shouldExecuteAndCompleteTask (merge 14.1.1.2206 -> ce/22.06 @ 118235)
[git-p4: depot-paths = "//dev/coherence-ce/release/coherence-ce-v22.06/": change = 118236]
1 parent a1d4f2e commit 435f4b3

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

prj/test/functional/concurrent/src/main/java/concurrent/executor/AbstractRemoteExecutorTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
2+
* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl.
@@ -63,6 +63,7 @@ public abstract class AbstractRemoteExecutorTest
6363
static
6464
{
6565
System.setProperty("coherence.lambdas", "dynamic");
66+
System.setProperty("coherence.executor.trace.logging", "true");
6667
}
6768

6869
// ----- api ------------------------------------------------------------

prj/test/functional/concurrent/src/main/java/concurrent/executor/RemoteExecutorExtendIT.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
2+
* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl.
@@ -70,11 +70,11 @@ protected Coherence getClient()
7070
IPv4Preferred.yes(),
7171
logs,
7272
ClusterPort.automatic(),
73+
SystemProperty.of("coherence.executor.trace.logging", "true"),
7374
SystemProperty.of("coherence.lambdas", "dynamic"),
7475
StabilityPredicate.of(CoherenceCluster.Predicates.isCoherenceRunning()))
7576
.include(1,
7677
DisplayName.of("storage"),
7778
RoleName.of("storage"),
78-
LocalStorage.enabled(),
79-
Logging.at(9));
79+
LocalStorage.enabled());
8080
}

prj/test/functional/concurrent/src/main/java/concurrent/executor/RemoteExecutorIT.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2000, 2024, Oracle and/or its affiliates.
2+
* Copyright (c) 2000, 2025, Oracle and/or its affiliates.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl.
@@ -63,11 +63,11 @@ protected Coherence getClient()
6363
Multicast.ttl(0),
6464
IPv4Preferred.yes(),
6565
ClusterPort.automatic(),
66+
SystemProperty.of("coherence.executor.trace.logging", "true"),
6667
SystemProperty.of("coherence.lambdas", "dynamic"),
6768
StabilityPredicate.of(CoherenceCluster.Predicates.isCoherenceRunning()))
6869
.include(1,
6970
DisplayName.of("storage"),
7071
RoleName.of("storage"),
71-
LocalStorage.enabled(),
72-
Logging.at(9));
72+
LocalStorage.enabled());
7373
}

prj/test/functional/concurrent/src/main/java/concurrent/executor/RemoteExecutorPofIT.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2024, Oracle and/or its affiliates.
2+
* Copyright (c) 2024, 2025, Oracle and/or its affiliates.
33
*
44
* Licensed under the Universal Permissive License v 1.0 as shown at
55
* https://oss.oracle.com/licenses/upl.
@@ -69,11 +69,11 @@ protected Coherence getClient()
6969
IPv4Preferred.yes(),
7070
SystemProperty.of("coherence.concurrent.serializer", "pof"),
7171
ClusterPort.automatic(),
72+
SystemProperty.of("coherence.executor.trace.logging", "true"),
7273
SystemProperty.of("coherence.lambdas", "dynamic"),
7374
StabilityPredicate.of(CoherenceCluster.Predicates.isCoherenceRunning()))
7475
.include(1,
7576
DisplayName.of("storage"),
7677
RoleName.of("storage"),
77-
LocalStorage.enabled(),
78-
Logging.at(9));
78+
LocalStorage.enabled());
7979
}

0 commit comments

Comments
 (0)