We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Step1 : sh manage.sh new-cert //generate rsa file Step2: sh manage.sh new-service //create a service but response error,is: { "code": 400, "label": "bad-request", "message": "Error in $: Failed reading: unescaped control character. Expecting object value" }
Bug: pubkey.pem is unescaped control character Fix: awk 'NF {sub(/\r/, ""); printf "%s\n",$0;}' pubkey.pem > pubkey_line.pem
The text was updated successfully, but these errors were encountered:
This is what worked for me awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' pubkey.pem
awk 'NF {sub(/\r/, ""); printf "%s\\n",$0;}' pubkey.pem
Sorry, something went wrong.
No branches or pull requests
Step1 : sh manage.sh new-cert //generate rsa file
Step2: sh manage.sh new-service //create a service but response error,is:
{
"code": 400,
"label": "bad-request",
"message": "Error in $: Failed reading: unescaped control character. Expecting object value"
}
Bug: pubkey.pem is unescaped control character
Fix: awk 'NF {sub(/\r/, ""); printf "%s\n",$0;}' pubkey.pem > pubkey_line.pem
The text was updated successfully, but these errors were encountered: