Use isoformat for create/update timestamps (#4294)

Co-authored-by: Karri Balk <kbalk@users.noreply.github.com>
This commit is contained in:
kbalk 2021-09-16 04:17:15 -04:00 committed by GitHub
parent 3498689d9d
commit 8029eab55a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,11 +153,11 @@ class DeliveryStream(
self.delivery_stream_status = "ACTIVE"
self.delivery_stream_arn = f"arn:aws:firehose:{region}:{ACCOUNT_ID}:/delivery_stream/{delivery_stream_name}"
self.create_timestamp = str(datetime.utcnow())
self.create_timestamp = datetime.utcnow().isoformat()
self.version_id = "1" # Used to track updates of destination configs
# I believe boto3 only adds this field after an update ...
self.last_update_timestamp = str(datetime.utcnow())
self.last_update_timestamp = datetime.utcnow().isoformat()
class FirehoseBackend(BaseBackend):
@ -614,7 +614,7 @@ class FirehoseBackend(BaseBackend):
# Increment version number and update the timestamp.
delivery_stream.version_id = str(int(current_delivery_stream_version_id) + 1)
delivery_stream.last_update_timestamp = str(datetime.utcnow())
delivery_stream.last_update_timestamp = datetime.utcnow().isoformat()
# Unimplemented: processing of the "S3BackupMode" parameter. Per the
# documentation: "You can update a delivery stream to enable Amazon