Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public DeleteControl cleanup(
LoggingUtils.TrackedMDC trackedMDC = new LoggingUtils.TrackedMDC();
try {
trackedMDC.set(sparkApplication);
log.info("Cleaning up resources for SparkApp.");
log.info("Cleaning up resources for SparkApp:" + sparkApplication.getMetadata().getName());
SparkAppContext ctx = new SparkAppContext(sparkApplication, context, submissionWorker);
List<AppReconcileStep> cleanupSteps = new ArrayList<>();
cleanupSteps.add(new AppValidateStep());
Expand All @@ -200,7 +200,7 @@ public DeleteControl cleanup(
}
}
} finally {
log.info("Cleanup completed");
log.debug("Cleanup completed");
trackedMDC.reset();
}
sparkAppStatusRecorder.removeCachedStatus(sparkApplication);
Expand Down
Loading