Skip to content

Commit 98da60a

Browse files
committed
fix: improve error message for missing workspace image
1 parent c2f783d commit 98da60a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/workspace/manager.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ async function ensureWorkspaceImage(): Promise<string> {
5757
}
5858

5959
throw new Error(
60-
`Workspace image not found. Either:\n` +
61-
` 1. Run 'perry build' to build locally, or\n` +
62-
` 2. Check your network connection to pull from registry`
60+
`Workspace image ${registryImage} not available.\n` +
61+
`The agent could not find or pull the required image.\n` +
62+
`This may happen if the version was just released and the image is still being published.`
6363
);
6464
}
6565

0 commit comments

Comments
 (0)