Alexander Rundberg
Alexander Rundberg
I also had one that was very difficult to troubleshoot. A method in one of our dataloaders was marked with Spring's `@Transactional`, which made Spring override `MyClass` with `MyClass$enhancedBySpringSomethingSomething`. The...
> My understanding was that it was for humans who didn't want to deal with the deeply nested folder structure That is the purpose here as well. It's true that...
How do you mean not control the code generator? E.g. if the code is generated by a plugin maintained by someone else? In most cases I would think that such...
This all sort of makes sense if most use-cases don't know the package ahead of time. What I don't understand is why an option, which you do not have to...
I haven't tested this and I'm not very familiar with curses, but it seems this would be a simple solution in lines 3101 to 3104: ```python if c == curses.KEY_LEFT...
While the related `Date` class does work in Postgres, it could also be changed to `::date` for consistency. But I think that's more of a stylistic choice, so not including...
Any progress on this?
When I posted this it seemed to consistently fail, now it seems sporadic for us. The logs are saying that a docker image doesn't exist. What we're doing is that...
This is one example: `Build base.yml` is executed before anything, as it should. ```yml when: - ref: 'refs/heads/main' event: [ 'push', 'pull_request' ] - event: [ 'pull_request' ] steps: -...
The errors are consistently logged as the image `auth-build:${CI_COMMIT_SHA}` does not exist, and from following the flow in the web UI it's apparent that it's because the auth-build step hasn't...