Andrei Nevedomskii

Results 22 comments of Andrei Nevedomskii

Here's a solution that is VERY hacky, but at the same time dead simple: https://gist.github.com/monosoul/048e0456851fdc4bafe708d1807c6a87 It uses access to package private fields in DD tracing-related classes to put scope stack...

@bruno-ortiz ah, yes, you're right. I also noticed that when I tried to use it with the agent and since then I've changed the solution, but forgot to update the...

I wouldn't recommend using the sample provided here: https://github.com/DataDog/dd-trace-java/issues/1123#issuecomment-615354579 , as that would cause errors/memory leaks. Here's an example: ```kotlin import datadog.opentracing.DDTracer.DDTracerBuilder import io.opentracing.Scope import io.opentracing.Span import io.opentracing.util.GlobalTracer import kotlinx.coroutines.ThreadContextElement...

@rakshasa @slingamn Hello, guys! Any progress on this one?

Hey all, I forked the plugin and published it under a new group: https://plugins.gradle.org/plugin/dev.monosoul.jooq-docker This issue is fixed there.

Hey @encodeering , with the new version of the plugin you can now specify Flyway and Jooq versions to use: https://github.com/monosoul/jooq-gradle-plugin Of course there are compatibility limitations, since it uses...

Hey @Rinat-Suleimanov , you can achieve this with the new version of this plugin: https://github.com/monosoul/jooq-gradle-plugin#multi-database-setup

You can do it like that: ```kotlin tasks { generateJooqClasses { customizeGenerator { generate.generatedSerialVersionUID = org.jooq.meta.jaxb.GeneratedSerialVersionUID.HASH } } } ``` Btw, this plugin seems to be abandoned, so I forked...

I didn't dig deep into it, but seems like mockk generates a random value for `ValueClassWithValidationInConstructor.value`, therefore the test might pass sometimes when the value is within the bounds.