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
When I use kill -SIGHUP pid to reload gitautodeploy process, the process quit with the following logs:
2019-03-20 20:13:12,640 [ERROR] self.serve_forever() 2019-03-20 20:13:12,640 [ERROR] File "gitautodeploy/gitautodeploy.py", line 511, in serve_forever 2019-03-20 20:13:12,641 [ERROR] 2019-03-20 20:13:12,641 [ERROR] os.chdir(wwwroot) 2019-03-20 20:13:12,641 [ERROR] OSError 2019-03-20 20:13:12,641 [ERROR] : 2019-03-20 20:13:12,641 [ERROR] [Errno 2] No such file or directory: '................./gitautodeploy/wwwroot/gitautodeploy/wwwroot' 2019-03-20 20:13:12,641 [ERROR]
I found a bug here. After first start, the program change directory to wwwroot
wwwroot = os.path.join(os.path.dirname(os.path.realpath(__file__)), "wwwroot") os.chdir(wwwroot)
When reload, wwwroot changed to a nested error place, so the program quit.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I use kill -SIGHUP pid to reload gitautodeploy process, the process quit with the following logs:
I found a bug here. After first start, the program change directory to wwwroot
When reload, wwwroot changed to a nested error place, so the program quit.
The text was updated successfully, but these errors were encountered: