We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74615e5 commit bcc1689Copy full SHA for bcc1689
1 file changed
dataikuapi/dssclient.py
@@ -989,15 +989,15 @@ def get_licensing_status(self):
989
"""
990
return self._perform_json("GET", "/admin/licensing/status")
991
992
- def set_offline_license(self, license):
+ def set_license(self, license):
993
994
Sets a new licence for DSS
995
996
:param license: license (content of license file)
997
:return: None
998
999
self._perform_empty(
1000
- "POST", "/admin/licensing/set-offline-license", params={"license": license})
+ "POST", "/admin/licensing/license", params={"license": license})
1001
1002
1003
########################################################
0 commit comments