Skip to content

Commit

Permalink
removed print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy committed May 23, 2011
1 parent bcb21c1 commit bc8762b
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 8 deletions.
2 changes: 1 addition & 1 deletion example/example1.rb
Expand Up @@ -8,7 +8,7 @@ class Sleeper < DRMAA::JobTemplate
def initialize
super
self.command = "/bin/sleep"
self.arg = ["1"]
self.arg = ["10"]
self.stdout = ":/dev/null"
self.join = true
end
Expand Down
3 changes: 0 additions & 3 deletions lib/drmaa.rb
Expand Up @@ -482,9 +482,6 @@ def DRMAA.wait(jobid, timeout)
waited.delete! "\000"
waited.strip!


pp "timeout? :(" if r == errno_timeout

return nil if r == errno_timeout
if r != errno_no_rusage
DRMAA.throw(r, r1[6])
Expand Down
2 changes: 1 addition & 1 deletion pkg/drmaa-0.0.1/example/example1.rb
Expand Up @@ -8,7 +8,7 @@ class Sleeper < DRMAA::JobTemplate
def initialize
super
self.command = "/bin/sleep"
self.arg = ["1"]
self.arg = ["10"]
self.stdout = ":/dev/null"
self.join = true
end
Expand Down
3 changes: 0 additions & 3 deletions pkg/drmaa-0.0.1/lib/drmaa.rb
Expand Up @@ -482,9 +482,6 @@ def DRMAA.wait(jobid, timeout)
waited.delete! "\000"
waited.strip!


pp "timeout? :(" if r == errno_timeout

return nil if r == errno_timeout
if r != errno_no_rusage
DRMAA.throw(r, r1[6])
Expand Down

0 comments on commit bc8762b

Please sign in to comment.