Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmapi/cmapi_server/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def start_transaction(
# conditions where that is the desired behavior here.
if int(r.status_code / 100) == 4:
logging.debug(
'Got a 4xx error while beginning transaction '
'Got a {r.status_code} error while beginning transaction '
f'with response text {r.text}'
)
break # TODO: useless, got break in finally statement
Expand Down
1 change: 1 addition & 0 deletions cmapi/mcs_cluster_tool/cmapi_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ def set(
url = build_url(
base_url='localhost', port=8640,
path=f'cmapi/{version}/cmapi_config',
query_params={},
)
headers = {'x-api-key': api_key}
body = {}
Expand Down