Registry lock unlock required
https://developer.hostup.se/errors/registry_lock_unlock_required {
"type": "https://developer.hostup.se/errors/registry_lock_unlock_required",
"title": "Registry lock unlock required",
"status": 409,
"detail": "Registry lock unlock required.",
"code": "registry_lock_unlock_required",
"instance": "/api/v2/...",
"requestId": "req_abc123",
"timestamp": "2026-04-27T12:00:00.000Z"
} const response = await fetch(url, options);
if (!response.ok) {
const problem = await response.json();
if (problem.code === "registry_lock_unlock_required") {
// Handle: Registry lock unlock required
console.error(problem.detail);
}
}