projects
/
tools
/
python-jenkinsapi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e07499
)
small issue with time import
author
Matt Hootman
<mhootman1980@gmail.com>
Wed, 18 Apr 2012 17:30:52 +0000
(12:30 -0500)
committer
Matt Hootman
<mhootman1980@gmail.com>
Wed, 18 Apr 2012 17:30:52 +0000
(12:30 -0500)
jenkinsapi/job.py
patch
|
blob
|
history
diff --git
a/jenkinsapi/job.py
b/jenkinsapi/job.py
index 9a948846808479398fccd371897b215fb0a273e9..fa1c255607991fd2d19125083470139b18c5ed44 100644
(file)
--- a/
jenkinsapi/job.py
+++ b/
jenkinsapi/job.py
@@
-71,7
+71,7
@@
class Job(JenkinsBase):
total_wait = 0
while self.is_queued():
log.info( "Waited %is for %s to begin..." % ( total_wait, self.id() ) )
-
time.
sleep( invoke_block_delay )
+ sleep( invoke_block_delay )
total_wait += invoke_block_delay
if self.is_running():
running_build = self.get_last_build()