-
Notifications
You must be signed in to change notification settings - Fork 64
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
Default behaviour for auto_inactive doesn't work as expected #92
Comments
Sharing the problem we are facing here:
I believe this is due to how override works, it is fetching for all deployments of a given environment and updating its status:
I think the solution @NickGraham101 mentioned would work for our use case also. |
what is the solution, could you please share? as I m also facing similar issue |
We are hitting this |
Thanks for the suggestion @NickGraham101 , I was hitting the same issues and disabling override on my finish actions appears to have done the trick. You saved my a whole pile of confusion, appreciate it. @nilampatel-engineer here's what my solution looked like in the end, i hope this clarifies things for you.
Just to be clear the fix was adding |
I'm also seeing this issue. |
Hey everyone, unfortunately, I haven't been able to take a look at this and probably won't have the bandwidth to actively maintain this project for the time being. If someone finds a good way forward I would appreciate a PR! If anyone is open to helping me maintain this project I'd be super grateful and happy to chat, please reach out to me via twitter, email, or #103! 🙏 |
#92 Mentions errors regarding deployments having the max number of statuses already set. This PR avoids this from happening, by only setting the status if the status isn't already "inactive". Co-authored-by: Robert Lin <[email protected]>
fixed with #104 |
After upgrading from v0.6.2 to v1 we encountered a rate limiting issue with the default settings of, I've discussed this further here.
We attempted to resolve this by changing
override
tofalse
and relying on the default setting oftrue
forauto_inactive
however this was only partially successful. We no longer get rate limited because there are no API calls being made to update the inactive deployments. However the status of the previous deployments are not getting updated, I believe this is because all deployments are now created withtransient_environment: true
.As per the docs:
I created a simple pipeline here which shows the multiple active deployments here.
Is it possible to make
transient_environment
a configurable value again?The text was updated successfully, but these errors were encountered: