X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/f70c457c73f1bff6314f8c3eb4ad7be0c44a5f1a..0ecea550fde014578e71004360b700cdfeae4909:/sdk/python/arvados/commands/put.py diff --git a/sdk/python/arvados/commands/put.py b/sdk/python/arvados/commands/put.py index 83fde9cba4..42510754ab 100644 --- a/sdk/python/arvados/commands/put.py +++ b/sdk/python/arvados/commands/put.py @@ -681,7 +681,7 @@ class ArvPutUploadJob(object): self._cache_file = open(cache_filepath, 'a+') else: # --no-resume means start with a empty cache file. - self.logger.info("Creating new cache file create at {}".format(cache_filepath)) + self.logger.info("Creating new cache file at {}".format(cache_filepath)) self._cache_file = open(cache_filepath, 'w+') self._cache_filename = self._cache_file.name self._lock_file(self._cache_file) @@ -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.