Jesse Bye
Jesse Bye
Sounds good! Here's what I have: https://github.com/jessebye/backstage-plugin-buildkite-metrics
We ended up working around this with a post-release step that adds the tags with `git`: ``` import { major, minor, prerelease } from 'semver'; async publishSuccessful(version: string): Promise {...
@AminFazlMondo yes, when we specify `roleToAssume`, projen gives us a Release step that is missing `AWS_ROLE_TO_ASSUME`. Could you share what your projen config looks like? Maybe I missed something in...
@Chriscbr would you be able to reopen this issue? #1846 is only a partial fix for this issue.
Should be resolved by https://github.com/argoproj/argo-cd/pull/14743
@kyleli666 Yes, this workaround is OK as long as you don't need updates to your applications to be synced. In our case, we need to update the applications sometimes to...
We just encountered this as well. Hadn't updated in a while, update to the latest version and it fails due to batch length. The only fix we could figure out...
@dossy seems like a reasonable approach, given the context 👍
As a workaround, I found that you can add `multiStatements=true` to the connection string. Then, procedures can be created *without* the use of the `delimiter`: ``` CREATE PROCEDURE myProcedure() BEGIN...