Skip to content
This repository has been archived by the owner on Jul 11, 2022. It is now read-only.

Commit

Permalink
[BZ 1435229] One more NPE coming from the PropertySimple
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Burman committed Mar 23, 2017
1 parent 1eb7290 commit 55cf6d7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -317,7 +317,7 @@ public void updateResourceConfiguration(ConfigurationUpdateReport report) {
}
}
PropertySimple configuredProcessTimeout = mapNew.getSimple("process-timeout");
if(configuredProcessTimeout != null) {
if(configuredProcessTimeout != null && configuredProcessTimeout.getIntegerValue() != null) {
processTimeout = configuredProcessTimeout.getIntegerValue();
}
}
Expand Down

0 comments on commit 55cf6d7

Please sign in to comment.