Skip to content
Snippets Groups Projects
Commit 87685428 authored by Douwe Maan's avatar Douwe Maan
Browse files

Explicitly set cwd in Sidekiq memory killer instead of depending on getcwd

parent 49003907
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -45,7 +45,7 @@ module Gitlab
private
 
def get_rss
output, status = Gitlab::Popen.popen(%W(ps -o rss= -p #{pid}))
output, status = Gitlab::Popen.popen(%W(ps -o rss= -p #{pid}), Rails.root.to_s)
return 0 unless status.zero?
 
output.to_i
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment