Skip to content

Commit fc25552

Browse files
committed
feat: original get_health_status endpoint URL has been restored by the SW360 team
1 parent 2c203db commit fc25552

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

ChangeLog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
# SW360 Base Library for Python
22

3+
## NEXT
4+
* new method `update_project_release_relationship`.
5+
* original get_health_status() endpoint URL has been restored by the SW360 team.
6+
37
## 1.1.0
4-
* New method `dulicate_project` to create a copy of an exisiting project.
8+
* New method `duplicate_project` to create a copy of an existing project.
59

610
## 1.0.0
711
* **New Features**:
812
* `get_projects_by_tag` added.
913
* `get_releases_by_name` added.
1014
* `get_all_vendors` added.
11-
* We have covered nearly all of the possibel REST API calls.
15+
* We have covered nearly all of the possible REST API calls.
1216
The library is successfully being used by multiple projects.
1317
Time to release version 1.0.0.
1418

sw360/sw360_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1545,7 +1545,7 @@ def get_health_status(self):
15451545
:rtype: JSON health status object
15461546
:raises SW360Error: if there is a negative HTTP response
15471547
"""
1548-
resp = self.api_get(self.url + "resource/actuator/health/")
1548+
resp = self.api_get(self.url + "resource/health/")
15491549
return resp
15501550

15511551
# ----- Clearing Requests ------------------------------------------------

0 commit comments

Comments
 (0)