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
I'm getting this error:
mpdas[4887]: terminate called after throwing an instance of 'std::logic_error' mpdas[4887]: what(): basic_string::_M_construct null not valid
Only when I run mpdas inside a systemd service. But when I run it manually I don't get it :/
mpdas
Any idea how to debug this? Google didn't help much...
The text was updated successfully, but these errors were encountered:
Hey @hrkfdn,
I think the problem is this line:
mpdas/main.cpp
Line 103 in c81c480
main.cpp assumes this environmental variable is set, while it isn't set in system-wide systemd services. Hence the fix that worked for me was to add:
main.cpp
[Service] Environment="HOME=/home/doron"
To my mpdas.service.
mpdas.service
Sorry, something went wrong.
No branches or pull requests
I'm getting this error:
Only when I run
mpdas
inside a systemd service. But when I run it manually I don't get it :/Any idea how to debug this? Google didn't help much...
The text was updated successfully, but these errors were encountered: