You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logging.error(this, s"Failed to reschedule activation (error: $t)")
133
+
logging.error(this, s"[${containerId.asString}] Failed to reschedule activation (error: $t)")
134
134
RescheduleResponse()
135
135
}
136
136
.foreach(res => {
@@ -139,7 +139,7 @@ class ActivationClientProxy(
139
139
stay()
140
140
141
141
caseEvent(msg: ActivationMessage, _: Client) =>
142
-
logging.debug(this, s"got a message ${msg.activationId} for action: ${msg.action}")
142
+
logging.debug(this, s"[${containerId.asString}] got a message ${msg.activationId} for action: ${msg.action}")
143
143
context.parent ! msg
144
144
145
145
stay()
@@ -152,7 +152,7 @@ class ActivationClientProxy(
152
152
case_: NoMemoryQueue=>
153
153
logging.error(
154
154
this,
155
-
s"The queue of action ${action} under invocationNamespace ${invocationNamespace} does not exist. Check for queues in other schedulers.")
155
+
s"[${containerId.asString}] The queue of action ${action} under invocationNamespace ${invocationNamespace} does not exist. Check for queues in other schedulers.")
156
156
c.activationClient
157
157
.close()
158
158
.flatMap(_ =>
@@ -162,15 +162,15 @@ class ActivationClientProxy(
162
162
stay()
163
163
164
164
case_: ActionMismatch=>
165
-
logging.error(this, s"action version does not match: $action")
165
+
logging.error(this, s"[${containerId.asString}] action version does not match: $action")
0 commit comments