tolerate missing secrets without breaking the whole server
[plstackapi.git] / planetstack / hpc_wizard / query.py
index 3570a56..4ddf4f6 100644 (file)
@@ -26,8 +26,13 @@ easy_install google_api_python_client
 
 PROJECT_NUMBER = '549187599759'
 
-FLOW = flow_from_clientsecrets('/opt/planetstack/hpc_wizard/client_secrets.json',
-                               scope='https://www.googleapis.com/auth/bigquery')
+try:
+    FLOW = flow_from_clientsecrets('/opt/planetstack/hpc_wizard/client_secrets.json',
+                                   scope='https://www.googleapis.com/auth/bigquery')
+except:
+    print "exception while initializing bigquery flow"
+    traceback.print_exc()
+    FLOW = None
 
 MINUTE_MS = 60*1000
 HOUR_MS = 60*60*1000