diff options
| author | Marco Capitani <m.capitani@nextworks.it> | 2017-06-13 09:51:31 +0200 | 
|---|---|---|
| committer | Marco Capitani <m.capitani@nextworks.it> | 2017-06-13 09:51:31 +0200 | 
| commit | 28c2d4015aa90454683473c23d11ae7fad9cc27b (patch) | |
| tree | 745e8fce35e9a2acc6aeb83d73904d941f09f97d | |
| parent | 3d16b92c65184d9a7c93a69d2b3393c528bf1dc6 (diff) | |
| download | rumba-28c2d4015aa90454683473c23d11ae7fad9cc27b.tar.gz rumba-28c2d4015aa90454683473c23d11ae7fad9cc27b.zip | |
IRATI switched wait and log
| -rw-r--r-- | rumba/prototypes/irati.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/rumba/prototypes/irati.py b/rumba/prototypes/irati.py index 2ae4723..42afe3b 100644 --- a/rumba/prototypes/irati.py +++ b/rumba/prototypes/irati.py @@ -170,8 +170,8 @@ class Experiment(mod.Experiment):      def enroll_nodes(self):          """Runs the enrollments one by one, respecting dependencies""" -        time.sleep(5)          logger.info("Waiting 5 seconds for the ipcm to start.") +        time.sleep(5)          for enrollment_list in self.enrollments:              for e in enrollment_list:                  logger.info( | 
