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
@@ -21,13 +21,13 | |||
|
21 | 21 | |
|
22 | 22 | def self.stop_grader(pid) |
|
23 | 23 | GraderScript.call_grader "stop #{pid}" |
|
24 | 24 | end |
|
25 | 25 | |
|
26 | 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 | 28 | GraderScript.call_grader "stop #{pid_str}" |
|
29 | 29 | end |
|
30 | 30 | |
|
31 | 31 | def self.start_grader(env) |
|
32 | 32 | GraderScript.call_grader "#{env} queue &" |
|
33 | 33 | GraderScript.call_grader "#{env} test_request &" |
You need to be logged in to leave comments.
Login now