Skip to content

Commit

Permalink
fix the hostname for the key server
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 21, 2024
1 parent 509de08 commit a57cb33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/workbench/utils/license_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def read_signature_public_key():
@classmethod
def contact_license_server(cls) -> requests.Response:
"""Contact the Workbench License Server to verify the license."""
server_url = "https://workbench-keyserver.com/decode-key"
server_url = "https://sageworks-keyserver.com/decode-key"
headers = {"Content-Type": "application/json", "x-api-key": cls.license_api_key}
data = {"api_key": cls.api_key}
return requests.post(server_url, headers=headers, json=data)
Expand Down

0 comments on commit a57cb33

Please sign in to comment.