Niklas

Results 836 comments of Niklas

Batch inserts into `INTEGRITY_META_COMPONENT` won't work well because potentially many threads will do it in parallel, so lots of contention. Did some testing locally and am running into deadlocks with...

Blocked until https://github.com/DependencyTrack/hyades-apiserver/pull/794 is merged.

For JDOQL queries, we could create a DataNucleus extension to support the `@>` operator: https://www.datanucleus.org/products/accessplatform_6_0/extensions/extensions.html#rdbms_sql_method

DataNucleus plugin for supporting the `@>` operator in JDOQL: https://github.com/nscuro/datanucleus-postgresql Adds a `jsonbContains` method to the `String` type, can be used like this: ```java final var person = new Person();...

Hey @jmayer-lm, this sounds interesting for sure! I'm wondering how this "scales" though as more and more teams are granted access to a project. Especially when team names are long-ish,...

In any case, please feel free to just raise any PRs you have. There's no conflict with any planned feature that I can think of.

Indeed this behavior is intended. Reason being that, with the `ACCESS_MANAGEMENT` permission, you could just assign any permission and any project to yourself that you desire. Restricting the projects users...

No worries at all! You are also not alone in wanting more fine grained ACLs, see #1075 and #1406. A PR with initial work was already contributed by @zprebosnyak-lm: https://github.com/DependencyTrack/hyades-apiserver/pull/800

> On the first run frontend returns 503 http error during login Are all containers up and healthy when this happens? There will be a slight delay at first, since...

Ah I think I found the issue. When you look at the API server logs, is it stuck at this line? ``` INFO [ProcessorInitializer] Initializing processors ``` I think we...