We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 312fbfa commit 48dcfccCopy full SHA for 48dcfcc
2 files changed
CHANGELOG.md
@@ -8,6 +8,10 @@ Changelog
8
9
- improved support for storing more data types in key-value stores
10
11
+### Fixed
12
+
13
+- fixed values of some `ActorJobStatus` `Enum` members
14
15
[0.3.0](../../releases/tag/v0.3.0) - 2021-08-26
16
-----------------------------------------------
17
src/apify_client/consts.py
@@ -13,9 +13,9 @@ class ActorJobStatus(Enum):
#: Actor job or build failed
FAILED = 'FAILED'
#: Actor job currently timing out
- TIMING_OUT = 'TIMING_OUT'
+ TIMING_OUT = 'TIMING-OUT'
#: Actor job timed out
18
- TIMED_OUT = 'TIMED_OUT'
+ TIMED_OUT = 'TIMED-OUT'
19
#: Actor job currently being aborted by user
20
ABORTING = 'ABORTING'
21
#: Actor job aborted by user
0 commit comments