From dc7743ca0f584eda9251c2e9aaeda92e0297f8c5 Mon Sep 17 00:00:00 2001 From: Erica Portnoy Date: Fri, 3 Apr 2020 16:07:22 -0700 Subject: [PATCH] fix killboulder implementation so I can test creating a new boulder server --- tests/letstest/multitester.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/letstest/multitester.py b/tests/letstest/multitester.py index c090c17bf..903b8cc3f 100644 --- a/tests/letstest/multitester.py +++ b/tests/letstest/multitester.py @@ -382,7 +382,7 @@ def test_client_process(fab_config, inqueue, outqueue, boulder_url): pass -def cleanup(cl_args, instances, targetlist): +def cleanup(cl_args, instances, targetlist, boulder_server): print('Logs in ', LOGDIR) # If lengths of instances and targetlist aren't equal, instances failed to # start before running tests so leaving instances running for debugging @@ -601,7 +601,7 @@ def main(): sys.exit(1) finally: - cleanup(cl_args, instances, targetlist) + cleanup(cl_args, instances, targetlist, boulder_server) if __name__ == '__main__':