File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ def handler():
115115
116116 start = now ()
117117 try :
118- logger .info (f"Starting deploy for '{ deploy_app .name } '..." )
118+ logger .info (f"Starting deploy for '{ deploy_app .name } ' using \" { ' ' . join ( deploy_app . run_args ) } \" ..." )
119119 with subprocess .Popen (
120120 deploy_app .run_args ,
121121 stdout = subprocess .PIPE ,
@@ -135,7 +135,9 @@ def handler():
135135 logger .info (f"<{ deploy_app .name } > { line .strip ()} " )
136136 exit_code = proc .wait ()
137137 if exit_code == - 15 :
138- logger .warning ("Subprocess killed by SIGTERM — likely due to service restart. Did python-deployer just deploy itself?" )
138+ logger .warning (
139+ "Subprocess killed by SIGTERM — likely due to service restart. Did python-deployer just deploy itself?"
140+ )
139141 elif exit_code != 0 :
140142 raise Exception (f"Subprocess exited with code: { exit_code } !" )
141143
You can’t perform that action at this time.
0 commit comments