Merge pull request #1 from cva/create_datasource

Execute googleclient commands in datastore existence check
This commit is contained in:
John Tantalo
2015-07-20 09:42:04 -04:00
+2 -2
View File
@@ -96,14 +96,14 @@ def main():
try:
googleClient.users().dataSources().get(
userId='me',
dataSourceId=dataSourceId)
dataSourceId=dataSourceId).execute()
except HttpError, error:
if not 'DataSourceId not found' in str(error):
raise error
# Doesn't exist, so create it.
googleClient.users().dataSources().create(
userId='me',
body=dataSource)
body=dataSource).execute()
datasetId = '%s-%s' % (minLogNs, maxLogNs)