Skip to content

Commit

Permalink
fix: Set correct url for MANGOPAY_DEFAULT_LOCAL_MOCK_SERVER_URL (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
rostislav-simonik-plc authored Mar 10, 2023
1 parent db85b63 commit c9b9bde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mangopay/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# to the MangopayAPIClient instead
PLENTIFIC_NAMESPACE = os.getenv("PLENTIFIC_NAMESPACE", "uk")
PLENTIFIC_IS_E2E = env_to_bool("PLENTIFIC_IS_E2E", False)
MANGOPAY_DEFAULT_LOCAL_MOCK_SERVER_URL = f"http://localhost:1081/mock-server/{PLENTIFIC_NAMESPACE}/mangopay"
MANGOPAY_DEFAULT_LOCAL_MOCK_SERVER_URL = "http://mock-server:5000/mock-server/mangopay"
MANGOPAY_DEFAULT_E2E_MOCK_SERVER_URL = "http://mock-server:1081/mangopay"
MANGOPAY_IS_MOCK_SERVER_ENABLED = env_to_bool("MANGOPAY_IS_MOCK_SERVER_ENABLED", False)
MANGOPAY_MOCK_SERVER_URL = os.environ.get(
Expand Down

0 comments on commit c9b9bde

Please sign in to comment.