Skip to content

Commit

Permalink
Merge pull request #91 from deniszh/DZ-lint-fix
Browse files Browse the repository at this point in the history
Fixing lint issues
  • Loading branch information
deniszh committed Jan 11, 2018
2 parents 029cd82 + 26151e8 commit 7f8efab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion carbonate/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,4 +421,5 @@ def whisper_fill():

startFrom = time()

fill_archives(src, dst, startFrom, lock_writes=args.lock, overwrite=args.overwrite)
fill_archives(src, dst, startFrom, lock_writes=args.lock,
overwrite=args.overwrite)
3 changes: 2 additions & 1 deletion carbonate/sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ def run_batch(metrics_to_sync, remote, local_storage, rsync_options,

rsync_elapsed = (time() - rsync_start)

merge_elapsed = sync_batch(metrics_to_heal, lock_writes=lock_writes, overwrite=overwrite)
merge_elapsed = sync_batch(metrics_to_heal, lock_writes=lock_writes,
overwrite=overwrite)

total_time = rsync_elapsed + merge_elapsed

Expand Down

0 comments on commit 7f8efab

Please sign in to comment.