Some final tweaks and added missing documentation

Contributes to: CURA-8587
This commit is contained in:
Jelle Spijker 2021-12-07 09:48:48 +01:00
parent 0fefe85fca
commit f6966c25fb
No known key found for this signature in database
GPG key ID: 6662DC033BE6B99A
7 changed files with 65 additions and 24 deletions

View file

@ -38,7 +38,7 @@ class CloudApiClient:
def _subscribe(self, package_id: str) -> None:
"""You probably don't want to use this directly. All installed packages will be automatically subscribed."""
Logger.debug("Subscribing to {}", package_id)
Logger.debug("Subscribing to using the Old Toolbox {}", package_id)
data = "{\"data\": {\"package_id\": \"%s\", \"sdk_version\": \"%s\"}}" % (package_id, CloudApiModel.sdk_version)
HttpRequestManager.getInstance().put(
url = CloudApiModel.api_url_user_packages,