Compare commits

...

2 Commits

Author SHA1 Message Date
Florian Hussonnois
aa1ba59983 chore(version): update to version 'v0.20.0'. 2024-12-03 12:20:53 +01:00
Loïc Mathieu
2e9a0d132a fix(core): possible NPE when the Executor didn't have the flow 2024-12-03 12:19:50 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1046,7 +1046,7 @@ public class ExecutorService {
* WARNING: ATM, only the first violation will update the execution.
*/
public Executor handleExecutionChangedSLA(Executor executor) throws QueueException {
if (ListUtils.isEmpty(executor.getFlow().getSla()) || executor.getExecution().getState().isTerminated()) {
if (executor.getFlow() == null || ListUtils.isEmpty(executor.getFlow().getSla()) || executor.getExecution().getState().isTerminated()) {
return executor;
}

View File

@@ -1,4 +1,4 @@
version=0.20.0-SNAPSHOT
version=0.20.0
org.gradle.parallel=true
org.gradle.caching=true