Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Api rate limit error fix #950

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
Show file tree
Hide file tree
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
removed some debugging
  • Loading branch information
mahabaleshwars committed Sep 25, 2024
commit ba50e5ed8e378cb404d8e353781670475936689f
3 changes: 0 additions & 3 deletions 3 dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91639,7 +91639,6 @@ function findReleaseFromManifest(semanticVersionSpec, architecture, manifest) {
manifest = yield getManifest();
}
const foundRelease = yield tc.findFromManifest(semanticVersionSpec, false, manifest, architecture);
core.info(`Found release: ${JSON.stringify(foundRelease)}`);
return foundRelease;
});
}
Expand All @@ -91649,7 +91648,6 @@ function getManifest() {
try {
const manifestFromRepo = yield getManifestFromRepo();
core.info('Successfully fetched the manifest from the repo.');
core.info(`Manifest from repo: ${JSON.stringify(manifestFromRepo)}`);
validateManifest(manifestFromRepo);
return manifestFromRepo;
}
Expand All @@ -91659,7 +91657,6 @@ function getManifest() {
try {
const manifestFromURL = yield getManifestFromURL();
core.info('Successfully fetched the manifest from the URL.');
core.info(`Manifest from URL: ${JSON.stringify(manifestFromURL)}`);
return manifestFromURL;
}
catch (err) {
Expand Down
3 changes: 0 additions & 3 deletions 3 src/install-python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,13 @@ export async function findReleaseFromManifest(
manifest,
architecture
);
core.info(`Found release: ${JSON.stringify(foundRelease)}`);
return foundRelease;
}

export async function getManifest(): Promise<tc.IToolRelease[]> {
try {
const manifestFromRepo = await getManifestFromRepo();
core.info('Successfully fetched the manifest from the repo.');
core.info(`Manifest from repo: ${JSON.stringify(manifestFromRepo)}`);
validateManifest(manifestFromRepo);
return manifestFromRepo;
} catch (err) {
Expand All @@ -45,7 +43,6 @@ export async function getManifest(): Promise<tc.IToolRelease[]> {
try {
const manifestFromURL = await getManifestFromURL();
core.info('Successfully fetched the manifest from the URL.');
core.info(`Manifest from URL: ${JSON.stringify(manifestFromURL)}`);
return manifestFromURL;
} catch (err) {
logError('Fetching the manifest via the URL failed.', err);
Expand Down
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.