agent: |
cbxNZB4PilxlZxGKPlE2Restart the app if services are down
Restart the app if services are down
There was a problem that the LLM was not able to address. Please rephrase your prompt and try again.
Just see if the restarting the broken services helps. This is just a remediation, not a solution. We may still need to root-cause the services going down.
inputs
outputs
docker_compose_file = "dagknows_src/app_docker_compose_build_deploy/localdev-saas-docker-compose.yml"
import time
_proceed = False
if not app_is_up:
cmd = f'sudo docker-compose -f {docker_compose_file} up -d'
op = _exei(instance_id, cmd)
time.sleep(30)
_proceed = True
msg = "Restarting the application"
print(msg)
cmd = f'sudo docker-compose -f {docker_compose_file} ps'
op1 = _exei(instance_id, cmd)
print(op1)
copied