Fix in datastore exception handling

This commit is contained in:
Marian Steinbach 2018-10-01 08:15:24 +02:00
parent 4d262859a5
commit 876e91bde6

View file

@ -104,7 +104,7 @@ def work_of_queue():
DATASTORE_CLIENT.put(entity)
except InvalidArgument as ex:
logging.error("Could not write result: %s", ex)
except ex:
except Exception as ex:
logging.error("Could not write result: %s", ex)