Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
liugddx committed Jan 1, 2024
1 parent d48de42 commit ff5eb5c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -442,6 +442,7 @@ public PassiveCompletableFuture<Void> submitJob(long jobId, Data jobImmutableInf
runningJobInfoIMap.remove(jobId);
runningJobMasterMap.remove(jobId);
}
jobMaster.setClassLoader(null);
});
return new PassiveCompletableFuture<>(jobSubmitFuture);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -448,6 +448,10 @@ public ClassLoader getClassLoader() {
return classLoader;
}

public void setClassLoader(ClassLoader classLoader) {
this.classLoader = classLoader;
}

public void cancelJob() {
physicalPlan.cancelJob();
}
Expand Down

0 comments on commit ff5eb5c

Please sign in to comment.