Skip to content

Commit a05d773

Browse files
authored
Don't explicitly finish the run for batch snapshots (#65)
1 parent fdb9948 commit a05d773

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/commands/upload/snapshots/snapshots.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def call(image_paths:, **options)
7575

7676
upload_images(run_id, options[:concurrency], image_files, client)
7777

78-
@profiler.measure('finish_run') { finish_run(run_id) }
78+
@profiler.measure('finish_run') { finish_run(run_id) } unless options[:batch]
7979
end
8080

8181
Logger.info 'Upload completed successfully!'

lib/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module EmergeCLI
2-
VERSION = '0.7.5'.freeze
2+
VERSION = '0.7.6'.freeze
33
end

0 commit comments

Comments
 (0)