Steps to replicate the issue (include links if applicable):
- Write a small python script like so:
print('Ερευνητής Αλήθειας') print('Some other stuff') for i in range(0,100): print('Something {i}')
- Setup a toolforge job like so:
- name: testing image: python3.11 command: $HOME/env/bin/python3 $HOME/test.py # test.py is where the python script lives no-filelog: true
- Run toolforge jobs load jobs.yaml
- Run toolforge jobs logs testing -f multiple times
What happens?:
The log keep exiting after printing this garbled text.
2024-06-16T17:25:02+00:00 [testing-b4hsn] ÎÏεÏ
the rest of the code appears to be executing but the statements are never printed to the log
What should have happened instead?:
The output should have been:
Ερευνητής Αλήθειας Some other stuff Something 0 Something 1 ... ... ...