Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Commit

Permalink
fixfix: Fix my fix
Browse files Browse the repository at this point in the history
It was actually the other way around (my excuse is that I was in a call lol)
  • Loading branch information
ferreira-mev committed May 25, 2022
1 parent 965b15a commit cb378f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pipefy_message/consumer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def process_message

elapsed_time_ms = Process.clock_gettime(Process::CLOCK_MONOTONIC, :millisecond) - start
logger.info({
duration_ms: elapsed_time,
duration_ms: elapsed_time_ms,
message_text: "Message received by consumer poller, processed " \
"in #{elapsed_time} milliseconds"
"in #{elapsed_time_ms} milliseconds"
})
end
rescue PipefyMessage::Providers::Errors::ResourceError => e
Expand Down

0 comments on commit cb378f4

Please sign in to comment.