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
The migration strategy negotiates the oldest version over all agents.
Having old agents from prior deployments breaks that, as they never renegotiate their version and will never update it.
One way to proceed would be by time: delete from services where updated_at is null or updated_at < now() - interval '15 minutes';
The text was updated successfully, but these errors were encountered:
The migration strategy negotiates the oldest version over all agents.
Having old agents from prior deployments breaks that, as they never renegotiate their version and will never update it.
One way to proceed would be by time:
delete from services where updated_at is null or updated_at < now() - interval '15 minutes';
The text was updated successfully, but these errors were encountered: