8000 Handled Candidate Not Iterable Error by mahabaleshwars · Pull Request #1074 · actions/setup-python · GitHub
[go: up one dir, main page]

Skip to content

Handled Candidate Not Iterable Error #1074

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix error message to debug
  • Loading branch information
HarithaVattikuti authored Apr 14, 2025
commit a29dca77bb920c04c89a6c8eb33b7b2dc300f21c
4 changes: 2 additions & 2 deletions src/install-python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
'The repository manifest is invalid or does not include any valid tool release (IToolRelease) entries.'
);
} catch (err) {
core.error('Failed to fetch the manifest from the repository API.');
core.debug('Failed to fetch the manifest from the repository API.');
if (err instanceof Error) {
core.error(`Error message: ${err.message}`);
core.debug(`Error message: ${err.message}`);
core.debug(`Error stack: ${err.stack}`);
} else {
core.error('An unexpected error occurred while fetching the manifest.');
Expand Down
Loading
0