Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

[NoRef-0] allow special characters for cf user password #487

Merged
merged 1 commit into from
Apr 18, 2023
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 libs/python/helperCommandExecution.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def login_cf(btpUsecase):
runShellCommandFlex(btpUsecase, command, "INFO", message, True, pipe)

# Step 2 - login
command = "cf auth " + myemail + " " + password
command = "cf auth " + myemail + " '" + password + "'"
message = (
"Non-interactive login step 2: authenticate to CF with user >"
+ myemail
Expand Down