Skip to content

Commit 48dcfcc

Browse files
authored
Fix some values in the ActorJobStatus Enum (#69)
1 parent 312fbfa commit 48dcfcc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Changelog
88

99
- improved support for storing more data types in key-value stores
1010

11+
### Fixed
12+
13+
- fixed values of some `ActorJobStatus` `Enum` members
14+
1115
[0.3.0](../../releases/tag/v0.3.0) - 2021-08-26
1216
-----------------------------------------------
1317

src/apify_client/consts.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ class ActorJobStatus(Enum):
1313
#: Actor job or build failed
1414
FAILED = 'FAILED'
1515
#: Actor job currently timing out
16-
TIMING_OUT = 'TIMING_OUT'
16+
TIMING_OUT = 'TIMING-OUT'
1717
#: Actor job timed out
18-
TIMED_OUT = 'TIMED_OUT'
18+
TIMED_OUT = 'TIMED-OUT'
1919
#: Actor job currently being aborted by user
2020
ABORTING = 'ABORTING'
2121
#: Actor job aborted by user

0 commit comments

Comments
 (0)