Vladimir Sitnikov

Results 1323 comments of Vladimir Sitnikov

I think it makes sense mirroring Java behavior: `Random#nextInt(min, max)` has inclusive `min`. At the same time, `__Random` uses `min, max+1`: https://github.com/apache/jmeter/blob/47bd32e0aa2d804a196570c05b52e88aabdc7e4f/src/functions/src/main/java/org/apache/jmeter/functions/Random.java#L69 Frankly I would like to align `__RandomDate` and...

@Vampire , Have you considered going with Gradle Module Metadata instead of `provided` scope? You could generate and publish the metadata even if you use Maven, you could add whatever...

Ok, I got corrected. So far my experience with `provided` was `provided servlet-api:servlet-api` while in practice the runtime was `weblogic.jar` :) I'm not sure how would I one use that....

I don't think JMeter has 429 handling, however, it looks it might be a reasonable feature to add: retry certain HTTP codes, and support `Retry-After` header.

>Created pull request https://github.com/pgjdbc/pgjdbc/pull/2967 for deprecating this method now in anticipation for future modularisation +1 > This dependency would be truly optional if the annotations were declared with @Retention(SOURCE) The...

I think so. An alternative option could be migrating to https://github.com/jspecify/jspecify once it is ready. See * https://github.com/jspecify/jspecify/issues/389 * https://github.com/jspecify/jspecify/issues/389#issuecomment-1581053633 * https://github.com/ben-manes/caffeine/issues/535

@bowbahdoe , see https://github.com/pgjdbc/pgjdbc/issues/2053 If you convince Guava switch, we follow.

Having `directDependencyStrategy` at dependency level looks strange. WDYT of something like: * `dependencyVersionType`: `strict` (select exactly this version), `require` (accept this or later), `reject` * `dependencyVersionMode`: `strict` (select exactly this...

> Consumer POM transformations should strip `directDependencyStrategy` attributes during publishing Ah. I missed the idea is to strip the attribute on publishing. In that regard, it makes no sense to...

@gnodet , I have read the proposal again, and I do not see user story in it. In other words, I do not see what would really change for the...