One example is coffee-resque, which sets the process name to something like resque-0.1.4: S.
The Rush code reading /proc//stat uses split(" "), which isn't enough when there are spaces in the process name. That causes an exception to be raised here, as the regexp doesn't match.
One example is coffee-resque, which sets the process name to something like
resque-0.1.4: S
.The Rush code reading /proc//stat uses
split(" ")
, which isn't enough when there are spaces in the process name. That causes an exception to be raised here, as the regexp doesn't match.