]> andersk Git - jira-zephyrbot.git/blobdiff - jirabot.py
Move the locking around the entire loop body.
[jira-zephyrbot.git] / jirabot.py
index c2fbf06df2b5c3d105dc34456307fedcd96f420d..b9b5be481879790ff12062542c3a80cd4be01684 100755 (executable)
@@ -68,6 +68,7 @@ def parse_issue(e):
     return zephyr.ZNotice(
         sender=zephyr_sender,
         auth=False,
+        opcode='auto',
         cls=zephyr_class,
         instance=issue,
         fields=[e.title, msg],
@@ -89,6 +90,7 @@ def parse_comment(e):
     return zephyr.ZNotice(
         sender=zephyr_sender,
         auth=False,
+        opcode='auto',
         cls=zephyr_class,
         instance=issue,
         fields=[e.title, msg],
@@ -98,6 +100,7 @@ def zerror(msg):
     return zephyr.ZNotice(
         sender=zephyr_sender,
         auth=False,
+        opcode='auto',
         cls=zephyr_class,
         instance='jira-error',
         fields=['Jira bot error', msg]
@@ -107,18 +110,20 @@ b = jira_init()
 zephyr.init()
 
 while True:
-    jira_login(b)
-    b.open("https://jira.mit.edu/jira/sr/jira.issueviews:searchrequest-rss/temp/SearchRequest.xml?&pid=10185&updated%3Aprevious=-1w&sorter/field=updated&sorter/order=DESC&tempMax=1000")
-    issues_rss = b.response().read()
-    b.open("https://jira.mit.edu/jira/sr/jira.issueviews:searchrequest-comments-rss/temp/SearchRequest.xml?&pid=10185&updated%3Aprevious=-1w&sorter/field=updated&sorter/order=DESC&tempMax=1000")
-    comments_rss = b.response().read()
-
     time_file_new = time_file + '.' + ''.join(random.sample(string.letters, 8))
 
     try:
         os.rename(time_file, time_file_new)
     except OSError:
-        exit()
+        print "warning: could not acquire timestamp lock"
+        time.sleep(17)
+        continue
+
+    jira_login(b)
+    b.open("https://jira.mit.edu/jira/sr/jira.issueviews:searchrequest-rss/temp/SearchRequest.xml?&pid=10185&updated%3Aprevious=-1w&sorter/field=updated&sorter/order=DESC&tempMax=1000")
+    issues_rss = b.response().read()
+    b.open("https://jira.mit.edu/jira/sr/jira.issueviews:searchrequest-comments-rss/temp/SearchRequest.xml?&pid=10185&updated%3Aprevious=-1w&sorter/field=updated&sorter/order=DESC&tempMax=1000")
+    comments_rss = b.response().read()
 
     old_time = int(open(time_file_new).read())
     new_time = old_time
@@ -128,9 +133,10 @@ while True:
 
     open(time_file_new, 'w').write(str(new_time))
 
-    os.rename(time_file_new, time_file)
-
     zephyrs.sort(key=lambda tz: tz[0])
     for (t, z) in zephyrs:
         z.send()
+
+    os.rename(time_file_new, time_file)
+
     time.sleep(60)
This page took 0.135487 seconds and 4 git commands to generate.