René Dupont

Results 34 comments of René Dupont

In `env.py` I have ``` from myapp.models import Base ... target_metadata = Base.metadata ``` and in `myapp.models` I do: ``` engine: Engine = create_engine(myDbUrl, pool_pre_ping=True) db_session: scoped_session = scoped_session(sessionmaker(autocommit=False, autoflush=False,...

In `myapp.models` I have a base model like this where I set the schema: ``` class BaseModel(Base): __abstract__ = True __table_args__ = {'extend_existing': True, 'schema': 'my_schema_name'} id = Column(UUID(as_uuid=True), primary_key=True,...

Looking at it again, I think I have to add more info of the scenario described in my opening post. The auto-generated full example looks actually more like this: ```...

AFAIK this is the issue in that Michael implemented this in the past: https://github.com/opendevstack/ods-jenkins-shared-library/issues/174

@clemensutschig The Bitbucket Code Insight feature used for the aqua integration consists basically just of a link to the report on the aqua server: ![pic](https://user-images.githubusercontent.com/39172761/121901858-11bdc480-cd27-11eb-8c2e-f0cc939ceb93.png)

In Java projects I have used https://github.com/diffplug/spotless which has a gradle plugin and mentions in their readme that it also works for groovy (I have only used it for java...

Hi @sino92! Could you elaborate a bit more what the issue is? For me they read the same, just with the difference that we let the pipeline in which the...

Same issue for Linux path: ``` $ helm secrets edit secrets.yaml secrets.yaml Failed to get the data key required to decrypt the SOPS file. Group 0: FAILED age1crs5whzptf3some1random2numbersxanajp0spv60gz: FAILED -...

@xabolcs I just tried replacing all occurrences of `branch=%s` with `%s=%s` like your first sight quick and dirty hack suggests but had no luck. Did you make any further progress...

All good, thanks for letting me know! In the meantime I'll skip generation for PRs!