From 41ee5363b4427bfd91fa744ce8f1f340c799e134 Mon Sep 17 00:00:00 2001 From: Eric Bryant Date: Sat, 24 Nov 2018 01:09:33 -0500 Subject: [PATCH] concurrency detection fix --- siteupdate/python-teresco/siteupdate.py | 1 + 1 file changed, 1 insertion(+) diff --git a/siteupdate/python-teresco/siteupdate.py b/siteupdate/python-teresco/siteupdate.py index 118c5f85..4b5b5050 100755 --- a/siteupdate/python-teresco/siteupdate.py +++ b/siteupdate/python-teresco/siteupdate.py @@ -2364,6 +2364,7 @@ def run(self): s.concurrent.append(other) concurrencyfile.write("New concurrency [" + str(s) + "][" + str(other) + "] (" + str(len(s.concurrent)) + ")\n") else: + other.concurrent = s.concurrent if other not in s.concurrent: s.concurrent.append(other) #concurrencyfile.write("Added concurrency [" + str(s) + "]-[" + str(other) + "] ("+ str(len(s.concurrent)) + ")\n")