Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes Axis 360 response parser exception code mapping. #2151

Merged
merged 1 commit into from
Nov 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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