Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Bugfix in orchestrator-client for authentication handling #797

Merged
Merged
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 resources/bin/orchestrator-client
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function get_curl_auth_params {
fi

# Test API access
curl "${basic_auth}" -s --head "${orchestrator_api}" 2>&1 | fgrep -q "$unauthorized_401" && \
curl "${requires_auth}" -s --head "${orchestrator_api}" 2>&1 | fgrep -q "$unauthorized_401" && \
echo "$unauthorized_401" && \
return

Expand Down