Closed alexbarcelo closed 6 years ago
Current implementation was failing if the config.ini included an explicit false --it was read as a string and thus a 'false' as a string was getted and it was considered True.
false
'false'
get
True
The enabled flag of the daemon was correctly using getboolean already.
enabled
getboolean
Nice catch. Thanks!
Current implementation was failing if the config.ini included an explicit
false
--it was read as a string and thus a'false'
as a string wasget
ted and it was consideredTrue
.The
enabled
flag of the daemon was correctly usinggetboolean
already.