We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eabb1d commit ec4b4e9Copy full SHA for ec4b4e9
src/swerex/deployment/docker.py
@@ -278,7 +278,9 @@ async def stop(self):
278
timeout=10,
279
)
280
except (subprocess.CalledProcessError, subprocess.TimeoutExpired) as e:
281
- self.logger.warning(f"Failed to kill container {self._container_name}: {e}", exc_info=True)
+ self.logger.warning(
282
+ f"Failed to kill container {self._container_name}: {e}. Will try harder.", exc_info=False
283
+ )
284
for _ in range(3):
285
self._container_process.kill()
286
try:
0 commit comments