From f61c7d9445c216c2364734fb1da2bea00cfb581d Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Wed, 12 Apr 2017 13:32:49 -0300 Subject: [PATCH] 11341: Added additional information log for cases when the user ask to not use any cache. --- sdk/python/arvados/commands/put.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sdk/python/arvados/commands/put.py b/sdk/python/arvados/commands/put.py index 83fde9cba4..ba78eb5333 100644 --- a/sdk/python/arvados/commands/put.py +++ b/sdk/python/arvados/commands/put.py @@ -698,6 +698,7 @@ class ArvPutUploadJob(object): # Cache file empty, set up new cache self._state = copy.deepcopy(self.EMPTY_STATE) else: + self.logger.info("No cache usage requested for this run.") # No cache file, set empty state self._state = copy.deepcopy(self.EMPTY_STATE) # Load the previous manifest so we can check if files were modified remotely. -- 2.39.5