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
Using an argument such as -D ./daemons/daemon1 frequently gives me this puzzling error:
-D ./daemons/daemon1
E0716 06:27:38.078249 1343 datalayer.cc:1406] IO error at the disk layer: IO error: ./daemons/daemon1/000004.log: No such file or directory
Changing the argument to this fixes it: -D $(readlink -f ./daemons/daemon1), as the relative path will be expanded.
-D $(readlink -f ./daemons/daemon1)
The text was updated successfully, but these errors were encountered:
@AaronFriel getting the same. Thanks for sharing the fix.
Sorry, something went wrong.
Resolve relative path when passing to the daemon. rescrv/HyperDex#216
5b2c972
No branches or pull requests
Using an argument such as
-D ./daemons/daemon1
frequently gives me this puzzling error:Changing the argument to this fixes it:
-D $(readlink -f ./daemons/daemon1)
, as the relative path will be expanded.The text was updated successfully, but these errors were encountered: