You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by tn...@apache.org on 2015/10/09 01:14:16 UTC

[3/3] mesos git commit: Fixed log message when untarring local image.

Fixed log message when untarring local image.

Review: https://reviews.apache.org/r/39136


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/0a8877cc
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/0a8877cc
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/0a8877cc

Branch: refs/heads/master
Commit: 0a8877ccf58d2e08056e9d21079d3949528df672
Parents: 0981bb0
Author: Jojy Varghese <jo...@mesosphere.io>
Authored: Thu Oct 8 18:46:41 2015 +0000
Committer: Timothy Chen <tn...@gmail.com>
Committed: Thu Oct 8 23:13:59 2015 +0000

----------------------------------------------------------------------
 src/slave/containerizer/provisioner/docker/local_puller.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/0a8877cc/src/slave/containerizer/provisioner/docker/local_puller.cpp
----------------------------------------------------------------------
diff --git a/src/slave/containerizer/provisioner/docker/local_puller.cpp b/src/slave/containerizer/provisioner/docker/local_puller.cpp
index 4a0b7d1..453e572 100644
--- a/src/slave/containerizer/provisioner/docker/local_puller.cpp
+++ b/src/slave/containerizer/provisioner/docker/local_puller.cpp
@@ -124,8 +124,8 @@ Future<Nothing> LocalPullerProcess::untarImage(
     const string& tarPath,
     const string& directory)
 {
-  VLOG(1) << "Untarring image from '" << directory
-          << "' to '" << tarPath << "'";
+  VLOG(1) << "Untarring image from '" << tarPath
+          << "' to '" << directory << "'";
 
   // Untar store_discovery_local_dir/name.tar into directory/.
   // TODO(tnachen): Terminate tar process when slave exits.