We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I run tkinter loop in main.py, after one modification in main.py arelo will restart it process twice.
main.py
# arelo -p '*.py' -i '.*' -r -v -- .venv/bin/python main.py 2024/04/01 14:33:33 [ARELO] command: [".venv/bin/python" "main.py"] 2024/04/01 14:33:33 [ARELO] targets: ["./"] 2024/04/01 14:33:33 [ARELO] patterns: ["*.py"] 2024/04/01 14:33:33 [ARELO] ignores: [".*"] 2024/04/01 14:33:33 [ARELO] filter: [no events] 2024/04/01 14:33:33 [ARELO] delay: 1s 2024/04/01 14:33:33 [ARELO] signal: SIGTERM 2024/04/01 14:33:33 [ARELO] restart: true 2024/04/01 14:33:33 [ARELO] watching target: "." 2024/04/01 14:33:33 [ARELO] watching target: "__pycache__" 2024/04/01 14:33:33 [ARELO] watching target: "." 2024/04/01 14:33:33 [ARELO] start: .venv/bin/python main.py 2024/04/01 14:33:38 [ARELO] event: CHMOD "main.py" 2024/04/01 14:33:38 [ARELO] event: WRITE "main.py" 2024/04/01 14:33:38 [ARELO] triggered: "main.py" 2024/04/01 14:33:38 [ARELO] wait 1s 2024/04/01 14:33:39 [ARELO] command error: process canceled: exit status 1 2024/04/01 14:33:39 [ARELO] start: .venv/bin/python main.py 2024/04/01 14:33:39 [ARELO] event: CHMOD "main.py" 2024/04/01 14:33:39 [ARELO] triggered: "main.py" 2024/04/01 14:33:39 [ARELO] wait 1s 2024/04/01 14:33:40 [ARELO] command error: process canceled: exit status 1 2024/04/01 14:33:40 [ARELO] start: .venv/bin/python main.py
what happend on 2024/04/01 14:33:39 [ARELO] command error: process canceled: exit status 1 and why twice ?
2024/04/01 14:33:39 [ARELO] command error: process canceled: exit status 1
thanks for your project.
The text was updated successfully, but these errors were encountered:
At 14:33:38, event CHMOD and WRITE were detected on "main.py", and that triggered process cancellation at 14:33:39.
The second cancellation at 14:33:40 was triggered by the event CHMOD at 14:33:39.
This cancellation may be prevented by using the --filter CHMOD option.
--filter CHMOD
Sorry, something went wrong.
see also: #3
No branches or pull requests
I run tkinter loop in
main.py
, after one modification inmain.py
arelo will restart it process twice.what happend on
2024/04/01 14:33:39 [ARELO] command error: process canceled: exit status 1
and why twice ?
thanks for your project.
The text was updated successfully, but these errors were encountered: