You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 30, 2020. It is now read-only.
Playing around with deis, I noticed that sometimes when you deis scale up, some of the containers wouldn't launch. Digging through the logs, I found this:
Sep 15 18:19:17 deis-1 fleetd[579]: INFO manager.go:222: Writing systemd unit madras-stickpin_v3.cmd.10-announce.service (1235b)
Sep 15 18:19:17 deis-1 fleetd[579]: INFO reconcile.go:274: AgentReconciler completed task: type=LoadUnit job=madras-stickpin_v3.cmd.10-announce.service reason="unit scheduled here but not loaded"
Sep 15 18:19:17 deis-1 fleetd[579]: ERROR manager.go:113: Failed to start systemd unit madras-stickpin_v3.cmd.10-announce.service: Unit madras-stickpin_v3.cmd.10.service failed to load: No such file or director
y.
Sep 15 18:19:17 deis-1 fleetd[579]: INFO reconcile.go:274: AgentReconciler completed task: type=StartUnit job=madras-stickpin_v3.cmd.10-announce.service reason="unit currently loaded but desired state is launch
ed"
Manually calling systemctl start madras-stickpin_v3.cmd.10-announce.service worked fine, so clearly there's some race condition here between writing the file to disk and starting it in systemd.
Playing around with deis, I noticed that sometimes when you
deis scaleup, some of the containers wouldn't launch. Digging through the logs, I found this:Manually calling
systemctl start madras-stickpin_v3.cmd.10-announce.serviceworked fine, so clearly there's some race condition here between writing the file to disk and starting it in systemd.