Travis Downs
Travis Downs
We now set --abort-on-seastar-bad-alloc for ducktape tests, which will cause the redpanda process to terminate with a diagnostic.
Currently startup failures are logged at INFO level, but there doesn't seem to be any reason to not log this critical failure message at error, as it only occurs at...
### Version & Environment Redpanda version: d334e7cedef828b5580b5dfe7d5e0e2557bcfa72 ### What went wrong? If an old node joins a cluster, it fails to join, which is good. What is not good is...
This is more of a question than an issue, please feel free to close if it has been discussed before. My current solution is to do borg backup locally, and...
Question: is it possible to share a "live" link to godbolt? That is, a link that will reflect modification if the code is modified. As far as I understand, all...
Consider [this test](https://github.com/eduardoboucas/staticman/blob/c8e339f65c3e760518a849dbbfb1deb2c8e6410a/test/unit/lib/GitHub.test.js#L112): ~~~js test('returns an error if parsing fails for the given file', async () => { const filePath = 'path/to/file.yml' const githubInstance = await new GitHub(req.params) try {...
Let's say your github token is revoked or otherwise wrong. You should get a `GITHUB_READING_FILE` error or similar. In fact, due to incorrect error handling, you fall into the parsing...
Consider the following loop: ``` add [rdx], 1 ``` I imagine OSACA will report it has having no loop carried dependencies. However, the actual iteration time of such a loop...
As described in more detail [in this gist](https://gist.github.com/travisdowns/4d80ee9a6b36d20590e846fa346797c1) not all types of loop carried dependencies (LCDs) can be detected. E.g., the carried dependency in this loop cannot be detected: ```...