@@ -160,7 +160,7 @@ private void submitReconciliationExecution(ResourceState state) {
160160 state .unMarkEventReceived ();
161161 metrics .reconcileCustomResource (state .getId (), state .getRetry (), metricsMetadata );
162162 log .debug ("Executing events for custom resource. Scope: {}" , executionScope );
163- executor .execute (new ControllerExecution (executionScope ));
163+ executor .execute (new ReconcilerExecutor (executionScope ));
164164 } else {
165165 log .debug (
166166 "Skipping executing controller for resource id: {}. Controller in execution: {}. Latest Resource present: {}" ,
@@ -376,10 +376,10 @@ private void handleAlreadyMarkedEvents() {
376376 }
377377 }
378378
379- private class ControllerExecution implements Runnable {
379+ private class ReconcilerExecutor implements Runnable {
380380 private final ExecutionScope <R > executionScope ;
381381
382- private ControllerExecution (ExecutionScope <R > executionScope ) {
382+ private ReconcilerExecutor (ExecutionScope <R > executionScope ) {
383383 this .executionScope = executionScope ;
384384 }
385385
@@ -390,7 +390,7 @@ public void run() {
390390 final var name = thread .getName ();
391391 try {
392392 MDCUtils .addResourceInfo (executionScope .getResource ());
393- thread .setName ("EventHandler -" + controllerName );
393+ thread .setName ("ReconcilerExecutor -" + controllerName + "-" + thread . getId () );
394394 PostExecutionControl <R > postExecutionControl =
395395 reconciliationDispatcher .handleExecution (executionScope );
396396 eventProcessingFinished (executionScope , postExecutionControl );
0 commit comments