Open q-src opened 6 years ago
I believe this is a limitation of config file parsing, it think you have a password with a comment after it.
try \# instead of # see if that works.
@TheSin- Thanks for your response. I've tried \#
but it didn't work. So I just removed the #
completely.
I think people don't actually need the possiblity to use #
in the password and therefore there is no real need to fix this bug. However, I'm sure it helps others if the behavior is mentioned somewhere. That's why I opened this issue - for documentation purposes ;-).
If the rpcpassword contains a
#
,./venv/bin/python bin/sentinel.py
fails.For example
rpcpassword=AAAA#BBBBBBBB
will result in:Based on the last line, I suspect that the script tries to parse the rpcpassword part in front of the
#
as an int.Of course, this is not an urgent issue, as one can easily work around it by not using
#
in the rpcpassword. So the primary goal of creating this bug report is documenting the issue and helping others saving some time.