-
Notifications
You must be signed in to change notification settings - Fork 24
chore: bump version before release + fixes #321
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
Merged
cyclimse
merged 19 commits into
master
from
chore/bump-version-before-release-and-fixes
Feb 26, 2026
Merged
Changes from 6 commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
e244a27
chore: bump version before release + fixes
cyclimse 76cfcbf
fix: reorder apply domains to container
cyclimse 9a84f03
fix: small log message change
cyclimse aa2075f
fix: prettier diff
cyclimse 3af37eb
test: try to add a sleep to see if it helps
cyclimse 3ecb08a
fix: fmt
cyclimse 64d171e
fix: deprecated auth in tests
cyclimse 07c10be
fix: fmt
cyclimse c854ff6
fix: omg it might work
cyclimse 6d66c1b
fix: fmt
cyclimse 49b4f5c
fix: some more tests
cyclimse cfacd27
fix: add blabla
cyclimse 2823e72
fix: change authconfig
cyclimse e5ee08b
Revert "fix: change authconfig"
cyclimse ff3cd79
fix: change authconfig again
cyclimse 675dae3
fix: oopsie
cyclimse ce34aaa
fix: oopsie again
cyclimse 6b44c37
fix: registryAuth invalid region
cyclimse 58e6914
fix: change it again
cyclimse File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: do we want to get the project instead of waiting one minute. To be honest, I don’t really know the state of the tests in this repo, so I don’t even know whether we actually use it or not, or whether this wait really slows down the tests.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh yeah, I forgot I changed it. It's a similar problem to what Leila had, when creating a project if it's not quite reconciled, when performing actions that require an IAM permission-check, you sometimes run into a permission denied that's cached for a while, failing all subsequent attempts. That's honestly what motivated to look further into the issue Leila had.
For context, the SLS FW create multiple account projects on every run, then run the tests within them.
The problem is that besides doing a sleep, there's not much we can do, because projects are not transient resources and don't expose a status. Yet, the IAM reconciliation/sync thingy is entirely async.
It genuinely seems to help, I haven't seen a permission denied in our tests since doing that, but the tests still fail randomly.
I/we need to look into it at some point, but it's a lot of effort.