Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ProActive
scheduling
Commits
7c2a5305
Commit
7c2a5305
authored
Oct 08, 2021
by
Oana Schiopu
Browse files
fix-set-detalied-variables
parent
77b7517c
Changes
2
Hide whitespace changes
Inline
Side-by-side
scheduler/scheduler-client/src/main/java/org/ow2/proactive/scheduler/job/ClientJobState.java
View file @
7c2a5305
...
...
@@ -103,6 +103,9 @@ public class ClientJobState extends JobState {
this
.
setOnTaskError
(
jobState
.
getOnTaskErrorProperty
().
getValue
());
this
.
genericInformation
=
new
LinkedHashMap
<>(
jobState
.
getGenericInformation
());
if
(
jobInfo
.
getDetailedVariables
()
==
null
)
{
jobInfo
.
setDetailedVariables
(
new
LinkedHashMap
<>(
variables
));
}
jobInfo
.
setGenericInformation
(
this
.
genericInformation
);
jobInfo
.
setVariables
(
this
.
getVariablesAsReplacementMap
());
...
...
scheduler/scheduler-node/src/test/java/org/ow2/proactive/scheduler/task/utils/TaskKillerTest.java
View file @
7c2a5305
...
...
@@ -109,7 +109,7 @@ public class TaskKillerTest {
is
(
false
));
// Wait 10 seconds for killing timeout to be exceeded
waitOrFailTest
(
1
0
000
);
waitOrFailTest
(
1
2
000
);
assertThat
(
"Task Killer must have interrupted at least twice after timeout has passed"
,
testThreadToBeInterrupted
.
isInterruptedMoreThanOnce
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment