Reminder to all repository users: Please do not add , commit and push any data files to your remote git repositories. The disk space the Git server is limited, it wasn't dimensioned to host anything else than code. Solely your code files need versioning. The data inputs/outputs don't. A good idea is to do "git add" individually on each file you want to commit, to avoid versioning unwanted content.

Sidekiq debugging

Log arguments to Sidekiq jobs

If you want to see what arguments are being passed to Sidekiq jobs you can set the SIDEKIQ_LOG_ARGUMENTS environment variable to 1 (true).

Example:

gitlab_rails['env'] = {"SIDEKIQ_LOG_ARGUMENTS" => "1"}

Please note: It is not recommend to enable this setting in production because some Sidekiq jobs (such as sending a password reset email) take secret arguments (for example the password reset token).