Description:
changed to_a to to_s
Commit status:
[Not Reviewed]
References:
Diff options:
Comments:
0 Commit comments
0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
r335:24f323f79504 - - 1 file changed: 1 inserted, 1 deleted
@@ -24,7 +24,7 | |||||
|
24 | end |
|
24 | end |
|
25 |
|
25 | ||
|
26 | def self.stop_graders(pids) |
|
26 | def self.stop_graders(pids) |
|
27 |
- pid_str = (pids.map { |process| process.pid.to_ |
|
27 | + pid_str = (pids.map { |process| process.pid.to_s }).join ' ' |
|
28 | GraderScript.call_grader "stop #{pid_str}" |
|
28 | GraderScript.call_grader "stop #{pid_str}" |
|
29 | end |
|
29 | end |
|
30 |
|
30 |
You need to be logged in to leave comments.
Login now