fix(System): ensure nomad container image tag resolves correctly

This commit is contained in:
Jake Turner 2026-03-09 05:44:37 +00:00
parent 0bc53727f3
commit 64e3ad52f8
No known key found for this signature in database
GPG Key ID: 6DCBBAE4FEAB53EB

View File

@ -36,7 +36,7 @@ export class SystemUpdateService {
const requestData = {
requested_at: new Date().toISOString(),
requester: 'admin-api',
target_tag: latestVersion || 'latest', // We should always have a latest version, but fallback to 'latest' just in case
target_tag: latestVersion ? `v${latestVersion}` : 'latest',
}
await writeFile(SystemUpdateService.REQUEST_FILE, JSON.stringify(requestData, null, 2))