-
-
Notifications
You must be signed in to change notification settings - Fork 52
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
Temporary DNS failure terminates notarization wait #169
Comments
basilevs
added a commit
to basilevs/apple-platform-rs
that referenced
this issue
Dec 8, 2024
Notarization performs a lot of polling requests. Some may fail due to network problems. Only the last request result is required for succefull notarization. Therefore we can safely ignore non-fatal errors until timeout is exceded. Fixes indygreg#169
basilevs
added a commit
to basilevs/apple-platform-rs
that referenced
this issue
Dec 8, 2024
Notarization performs a lot of polling requests. Some may fail due to network problems. Only the last request result is required for succefull notarization. Therefore we can safely ignore non-fatal errors until timeout is exceded. Fixes indygreg#169
basilevs
added a commit
to basilevs/apple-platform-rs
that referenced
this issue
Dec 9, 2024
Notarization performs a lot of polling requests. Some may fail due to network problems. Only the last request result is required for succefull notarization. Therefore we can safely ignore non-fatal errors until timeout is exceded. Fixes indygreg#169
basilevs
added a commit
to basilevs/apple-platform-rs
that referenced
this issue
Dec 9, 2024
Notarization performs a lot of polling requests. Some may fail due to network problems. Only the last request result is required for succefull notarization. Therefore we can safely ignore non-fatal errors until timeout is exceded. Fixes indygreg#169
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Test steps
notary-submit --staple
on an unstable network.Actual result
The exit code is 0. The DMG is left unstapled. Notarization logs are not yet available.
Expected result
DNS failure should be considered either fatal or not:
DNS failure is fatal
rcodesign should terminate with a non-zero exit code.
DNS failure is non-fatal
rcodesign should continue waiting for the notarization process to complete and staple the DMG.
Rationale:
Build scripts using rcodesign are confused by the fact that succesfull termination of rcodesign does not produce a notarized DMG file.
The text was updated successfully, but these errors were encountered: