nboost
nboost copied to clipboard
nboost not starting in windows
I have been trying to setup nboost in windows using conda but trying to start it gives this error
File "c:\users\varun\anaconda3\envs\nboost\lib\site-packages\nboost\proxy.py", line 140, in <lambda> self.logger.critical('LISTENING %s:%s' % (host, port)) or AttributeError: 'NTLogger' object has no attribute 'critical'
does anyone else faced this issue or have an idea why this happened.
You have to add self.critical = self.format_msg('C:%s:%s') into the NTLogger class
@Alex-Downey I would welcome a PR on this if you're able. Thanks
@pertschuk, What's the process for that? Do I need permissions to publish a new branch or is there something I'm missing?
You basically can comment out lines 11 & 12 in logger.py to get it running. Additionally you have to change the encoding in base.py and logger.py as well as the indexing in es.py (if you deal with windows based elastic search docker). I'll clean up my Code and make a merge request in a few days
Hey, any update on this?