This is an automated email from the ASF dual-hosted git repository.

bdoyle pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwhisk.git


The following commit(s) were added to refs/heads/master by this push:
     new a1639f0e4 add container and creation ids to logs when queue attempts 
to stop for better debugging (#5324)
a1639f0e4 is described below

commit a1639f0e4d7270c9a230190ac26acb61413b6bbb
Author: Brendan Doyle <[email protected]>
AuthorDate: Mon Sep 12 19:40:10 2022 -0700

    add container and creation ids to logs when queue attempts to stop for 
better debugging (#5324)
    
    Co-authored-by: Brendan Doyle <[email protected]>
---
 .../scala/org/apache/openwhisk/core/scheduler/queue/MemoryQueue.scala   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/core/scheduler/src/main/scala/org/apache/openwhisk/core/scheduler/queue/MemoryQueue.scala
 
b/core/scheduler/src/main/scala/org/apache/openwhisk/core/scheduler/queue/MemoryQueue.scala
index 45fa2d3a2..7f174f9aa 100644
--- 
a/core/scheduler/src/main/scala/org/apache/openwhisk/core/scheduler/queue/MemoryQueue.scala
+++ 
b/core/scheduler/src/main/scala/org/apache/openwhisk/core/scheduler/queue/MemoryQueue.scala
@@ -242,7 +242,7 @@ class MemoryQueue(private val etcdClient: EtcdClient,
       } else {
         logging.info(
           this,
-          s"[$invocationNamespace:$action:$stateName] The queue is timed out 
but there are still ${queue.size} activation messages or (running: 
${containers.size}, in-progress: ${creationIds.size}) containers")
+          s"[$invocationNamespace:$action:$stateName] The queue is timed out 
but there are still ${queue.size} activation messages or (running: 
${containers.size} -> ${containers.toString}, in-progress: ${creationIds.size} 
-> ${creationIds.toString}) containers")
         stay
       }
 

Reply via email to