-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
PingStart: nonretriable error response: 404 Not Found #11
Comments
Looks like your instance runs on So you should pass |
Excellent! That worked. But now I encountered the next problem: When i try to put a command after "--" I had assumed it would take everything following the "--". But this does not seem to be the case because a pipe "|" character is not taken into the execution by runitor. |
Short AnswerPiping via If you want runitor to execute a shell for you, then you can replace the command with your shell of your choice and pass the shell command to be evaluated: e.g.:
Long AnswerWhen you invoke It will first create an anonymous pipe with two ends. Then execute runitor, and set its argument array to:
...and then replace the stdout file descriptor of this process with one end of the pipe. Execute You can see a nice illustration of how shell parses its command on explainshell.com |
I have tried to use runitor with a self-hosted healthchecks instance, but failed so far.
Curl approach works fine:
runitor command throws an error:
Is this a known issue? Anything I can do?
Thanks!
The text was updated successfully, but these errors were encountered: