This repository has been archived by the owner on Oct 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Mitigate GSSAPIAuthError #487
Merged
vfreex
merged 2 commits into
openshift-eng:master
from
vfreex:mitigate-gssapi-auth-error
Jul 30, 2021
Merged
Mitigate GSSAPIAuthError #487
vfreex
merged 2 commits into
openshift-eng:master
from
vfreex:mitigate-gssapi-auth-error
Jul 30, 2021
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
`koji.GSSAPIAuthError: unable to obtain a session` still occurs very frequently after applying openshift-eng@0436b54. This PR proposes a workaround by calling `gssapi_login` on `runtime.shared_koji_client_session` before we build any image or rpm. This would significantly reduce the number of `gssapi_login` calls in one doozer invocation. Even if `gssapi_login` fails in the first call, it fails earlier.
Build #1
|
jupierce
approved these changes
Jul 29, 2021
vfreex
added a commit
to vfreex/doozer
that referenced
this pull request
Aug 9, 2021
dbe3d91 Fix a bug where upstream git commit was incorrectly pinned for stream assembly (openshift-eng#495) 084baa1 Turn git commit into a parsable yaml document This will allow our automation to be able to detect source and commit information without having to parse RPM spec files. 0917797 Build basis locked assemblies artifacts from their lastet build's upstream commit c61bd43 Make evaluation of -alt image deterministic e398878 Use unaltered git url to assess whether images are siblings 7d21721 Fixes for building from a specific commit 16f1e44 Allow assemblies to override streams 2a69d50 Do not write duplicate destinations 6821b79 Add emergency override b908fe5 Gen-assembly from GA releases and default stream permits 788ae1e Reintroduce hotfix tagging f4c42b7 Formalizing assembly issues and permitting them 20fdd0c Mitigate GSSAPIAuthError (openshift-eng#487) 5b7d850 Gen-payload for assembly fixes and updates for PR comments cea8804 Make gen-payload enforce assembly consistency
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
koji.GSSAPIAuthError: unable to obtain a session
still occurs very frequentlyafter applying 0436b54.
This PR proposes a workaround by calling
gssapi_login
onruntime.shared_koji_client_session
before we build any image or rpm. This would significantly reduce the number of
gssapi_login
callsin one doozer invocation. Even if
gssapi_login
fails in the first call, it fails earlier.