- Notifications
You must be signed in to change notification settings - Fork928
fix: set a failed canceled job status correctly#3061
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
We are starting to run into test flakes due to lack of randomness in CI,this change simply bumps randomness by additional suffix numbers.See:#3038 (comment)
* chore: Speed up port-forward tests* chore: Add t.Helper and ensure listener closure on error
Bumps [github.com/spf13/afero](https://github.com/spf13/afero) from 1.9.0 to 1.9.2.- [Release notes](https://github.com/spf13/afero/releases)- [Commits](spf13/afero@v1.9.0...v1.9.2)---updated-dependencies:- dependency-name: github.com/spf13/afero dependency-type: direct:production update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1.- [Release notes](https://github.com/terser/terser/releases)- [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md)- [Commits](https://github.com/terser/terser/commits)---updated-dependencies:- dependency-name: terser dependency-type: indirect...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* fix: Fix statuses breaking line in the UI* fix: AppLink stories
Considering database load and CI performance during testing, we shouldavoid failing too early.
Avoid relying on codecov to manage action step failure, hopefully worksaround:codecov/codecov-action#788
The Go test timeout uses 20m, if we want to get a stack trace, we mustallow the actions worker to run longer than that.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Cian Johnston <cian@coder.com>
* fix: Potential deadlock in peer.Channel dc.OnOpen* fix: Potential send on closed channel* fix: Improve robustness of waitOpened during close* chore: Simplify statements* fix: Improve teardown and timeout of peer tests* fix: Improve robustness of TestConn/Buffering test* Update peer/channel.goCo-authored-by: Steven Masley <Emyrk@users.noreply.github.com>
Two coderd unit tests (TestPatchCancelTemplateVersion/Success and TestPatchCancelWorkspaceBuild) implied erroneously that the job was canceled successfully.This is not the case, as these unit tests do not include a Provision_Complete response in the input to theecho provisioner. Now explicitly checking the job error and bumping the force cancel interval to be longer.Fixes#3083.
Uh oh!
There was an error while loading.Please reload this page.
Co-authored-by: Cian Johnston <cian@coder.com>
Co-authored-by: Cian Johnston <cian@coder.com>
Wow, what a rebase effort. Closing in favor of a cleaner#3101. |
Uh oh!
There was an error while loading.Please reload this page.
resolves#1374
When a previous job was canceled and that cancellation was unsuccessful, we incorrectly set the job status as
canceled
. This fix remedies that issue by setting the status asFailed
.