We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fbf6fc5 commit f64ae78Copy full SHA for f64ae78
CHANGELOG.md
@@ -10,6 +10,7 @@
10
### Fixed
11
12
- fixed `chaosaws.s3.controls.upload` so it uploads the journal as a file
13
+- fixed `chaosaws.s3.controls.upload` so the timestamp is generated
14
15
16
## [0.20.0][] - 2022-07-11
chaosaws/s3/controls/upload.py
@@ -64,7 +64,7 @@ def after_experiment_control(
64
65
suffix = ""
66
if suffix_with_timestamp:
67
- ts = datetime.utcnow().replace(timezone=timezone.utc).isoformat()
+ ts = datetime.utcnow().replace(tzinfo=timezone.utc).isoformat()
68
suffix = f"-{ts}"
69
70
path = f"{dirpath}/journal{suffix}.{ext}"
0 commit comments