You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2019/07/09 08:24:13 UTC

[sling-whiteboard] 03/03: tweaks

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

bdelacretaz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-whiteboard.git

commit 6362e614643f588b00eb7eb7874805adfa65db0a
Author: Bertrand Delacretaz <bd...@apache.org>
AuthorDate: Tue Jul 9 10:23:58 2019 +0200

    tweaks
---
 graalvm/time-to-first-request/index.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/graalvm/time-to-first-request/index.js b/graalvm/time-to-first-request/index.js
index 987e304..46022ee 100644
--- a/graalvm/time-to-first-request/index.js
+++ b/graalvm/time-to-first-request/index.js
@@ -83,7 +83,7 @@ const cleanup = async () => {
   } else {
     const runningContainer = await getContainer(dockerImage);
     if(runningContainer) {
-      console.log(`cleanup: killing container ${dockerImage}/${runningContainer.Id.substring(0,12)} ...`);
+      console.log(`Killing container ${dockerImage}/${runningContainer.Id.substring(0,12)} ...`);
       const container = await docker.getContainer(runningContainer.Id);
       await container.kill();
       console.log('killed');