DEV: Serialize the job parameters in sidekiq logs

Otherwise this can lead to some very large data structures when processing the logs later
This commit is contained in:
David Taylor 2019-03-05 17:44:49 +00:00
parent 1b2bd36061
commit 8b30ed5b7a
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ module Jobs
@data["database"] = db # DB name - multisite db name it ran on
@data["job_name"] = job_class.name # Job Name - eg: Jobs::AboutStats
@data["job_type"] = job_class.try(:scheduled?) ? "scheduled" : "regular" # Job Type - either s for scheduled or r for regular
@data["opts"] = opts # Params - json encoded params for the job
@data["opts"] = opts.to_json # Params - json encoded params for the job
@data["status"] = 'pending'
@start_timestamp = Process.clock_gettime(Process::CLOCK_MONOTONIC)