Skip to content

Commit 2b8d7f3

Browse files
bug fix ~ don't freeze instrumentation payload
1 parent 01a6d5f commit 2b8d7f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/taskinator/instrumentation.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def payload_for(state, additional={})
6969
:percentage_processing => (count > 0) ? (processing.to_i / count) * 100.0 : 0.0,
7070
:percentage_completed => (count > 0) ? (completed.to_i / count) * 100.0 : 0.0,
7171
}.merge(additional)
72-
).freeze
72+
)
7373

7474
end
7575

0 commit comments

Comments
 (0)