Skip to content

Commit

Permalink
Fixes Axis 360 response parser exception code mapping. (#2151)
Browse files Browse the repository at this point in the history
  • Loading branch information
tdilauro authored Nov 2, 2024
1 parent 0210227 commit fed3447
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/palace/manager/api/axis.py
Original file line number Diff line number Diff line change
Expand Up @@ -1325,10 +1325,10 @@ class ResponseParser:
2000: LibraryAuthorizationFailedException,
2001: LibraryAuthorizationFailedException,
2002: LibraryAuthorizationFailedException,
2003: LibraryAuthorizationFailedException, # "Encoded input parameters exceed limit", whatever that meaus
2004: LibraryAuthorizationFailedException,
2003: LibraryAuthorizationFailedException, # "Encoded input parameters exceed limit", whatever that means
2004: LibraryAuthorizationFailedException, # Authorization string is not properly encoded
2005: LibraryAuthorizationFailedException, # Invalid credentials
2005: LibraryAuthorizationFailedException, # Wrong library ID
2006: LibraryAuthorizationFailedException, # Library ID not associated with given vendor
2007: LibraryAuthorizationFailedException, # Invalid library ID
2008: LibraryAuthorizationFailedException, # Invalid library ID
3100: LibraryInvalidInputException, # Missing title ID
Expand Down

0 comments on commit fed3447

Please sign in to comment.