From 94cbd4bc21279a0e2c13e113d49fb8d1eaf676de Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Tue, 24 Feb 2015 17:32:53 +0100 Subject: [PATCH] Tell export-bugzilla to not store the bugzilla token on disc --- roles/fas_server/files/export-bugzilla | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/fas_server/files/export-bugzilla b/roles/fas_server/files/export-bugzilla index d557acd624..5bec117915 100644 --- a/roles/fas_server/files/export-bugzilla +++ b/roles/fas_server/files/export-bugzilla @@ -46,7 +46,7 @@ if __name__ == '__main__': bzGroup = args[1] server = bugzilla.Bugzilla(url=BZSERVER, user=BZUSER, password=BZPASS, - cookiefile=None) + cookiefile=None, tokenfile=None) bugzilla_queue = BugzillaQueue.query.join('group').filter_by( name=ourGroup)