Skip to content

Commit

Permalink
Continue mirror extension versions even if one fails
Browse files Browse the repository at this point in the history
Currently, the OpenVSX server stops mirroring extension version if one of the
versions failed to be mirrored. This commit logs the mirror failure instead of
throwing an error.

Fixes eclipse#923.
  • Loading branch information
hoangphamEclipse committed Jun 11, 2024
1 parent eb6cdd6 commit 5fe0984
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,6 @@ private void mirrorExtensionVersions(String namespaceName, String extensionName,
data.getMirroredVersions().increment();
} catch (Throwable t) {
data.getFailedVersions().increment();
throw t;
}
}
}
Expand Down

0 comments on commit 5fe0984

Please sign in to comment.