Closed Intron014 closed 12 months ago
Your BotLi version 20230913-c477087
is two month old. The problem was fixed with b08363d a month ago.
Damn, thanks! Sorry to bother again but now I have not output in the logs :( The bot works! The output of the script is just not appearing
This could happen due to output buffer. Start Python with -u
to deactivate the output buffer.
CMD ["python3", "-u", "user_interface.py", "-m"]
Perfect! Thanks a lot! :D
Please read, understand and follow: https://lichess.org/@/thibault/blog/how-to-ask-technical-questions/1HSthDSX
Describe the bug When run in a dockerized version Dockerfile:
it starts like this:
To Reproduce This is the file structure of the docker volume (what I copy).
├── aliases.py ├── api.py ├── botli_dataclasses.py ├── botli.log ├── challenger.py ├── challenge_validator.py ├── chatter.py ├── config.py ├── config.yml ├── Dockerfile ├── engine.py ├── engines │ ├── brainlearn │ ├── Brainlearn26.2-x86-64-bmi2 │ ├── DarkMatter.bin │ ├── experience.exp ├── enums.py ├── event_handler.py ├── game_manager.py ├── game.py ├── Intron014_matchmaking.json ├── LICENSE ├── lichess_game.py ├── logo.py ├── matchmaking.py ├── opponents.py ├── pending_challenge.py ├── pycache │ ├── aliases.cpython-310.pyc │ ├── aliases.cpython-311.pyc │ ├── api.cpython-310.pyc │ ├── api.cpython-311.pyc │ ├── botli_dataclasses.cpython-310.pyc │ ├── botli_dataclasses.cpython-311.pyc │ ├── challenger.cpython-310.pyc │ ├── challenger.cpython-311.pyc │ ├── challenge_validator.cpython-310.pyc │ ├── challenge_validator.cpython-311.pyc │ ├── chatter.cpython-310.pyc │ ├── chatter.cpython-311.pyc │ ├── config.cpython-310.pyc │ ├── config.cpython-311.pyc │ ├── engine.cpython-310.pyc │ ├── engine.cpython-311.pyc │ ├── enums.cpython-310.pyc │ ├── enums.cpython-311.pyc │ ├── event_handler.cpython-310.pyc │ ├── event_handler.cpython-311.pyc │ ├── game.cpython-310.pyc │ ├── game.cpython-311.pyc │ ├── game_manager.cpython-310.pyc │ ├── game_manager.cpython-311.pyc │ ├── lichess_game.cpython-310.pyc │ ├── lichess_game.cpython-311.pyc │ ├── logo.cpython-310.pyc │ ├── logo.cpython-311.pyc │ ├── matchmaking.cpython-310.pyc │ ├── matchmaking.cpython-311.pyc │ ├── opponents.cpython-310.pyc │ ├── opponents.cpython-311.pyc │ ├── pending_challenge.cpython-310.pyc │ └── pending_challenge.cpython-311.pyc ├── README.md ├── requirements.txt └── user_interface.py
Expected behavior It starts matchmaking
Information:
Config:
Additional context :D