deploy fails (correctly); weird state of deployer related files on our server #4112
-
Hello :) I wanted to deploy a project and deployer failed correctly because the release already existed. So I checked on the server and I found:
I am wondering: did the files deployer uses to track the current release change between deployer 6 and 7.3.0? I am wondering this bc. the file with higher numbers (and also the higher number releases) are from times where the project was on deployer 6 and then I updated to 7.3.0 Further Info:
Thanks in advance :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yep—Deployer changed release tracking in v7.
Your v7 thinks latest is 57, but Fix (pick one):
(You can ignore or remove |
Beta Was this translation helpful? Give feedback.
Yep—Deployer changed release tracking in v7.
.dep/releases
(timestamp,number)..dep/latest_release
+.dep/releases_log
.Your v7 thinks latest is 57, but
releases/58
already exists from v6 → collision.Fix (pick one):
One-off:
dep deploy -o release_name=<NEXT_FREE>
(e.g., highest dir is 92 → use 93).Persistent:
Next deploy creates
HIGHEST+1
.(You can ignore or remove
.dep/releases
; v7 doesn’t use it.)