We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2be55ec commit 790f3c4Copy full SHA for 790f3c4
rsconnect/api.py
@@ -1095,7 +1095,9 @@ def get_application(self, application_id):
1095
return response
1096
1097
def update_application_property(self, application_id: int, property: str, value: str):
1098
- return self.put("/v1/applications/{}/properties/{}".format(application_id, property), body={"value": value})
+ response = self.put("/v1/applications/{}/properties/{}".format(application_id, property), body={"value": value})
1099
+ self._server.handle_bad_response(response)
1100
+ return response
1101
1102
def get_content(self, content_id):
1103
response = self.get("/v1/content/{}".format(content_id))
0 commit comments