Sascha Sadat-Guscheh

Results 8 issues of Sascha Sadat-Guscheh

`data class A(val a: String = "someString", val b: String)` config file `A { b = "someOtherString" }` `extract()` throws atm in that case

riemannClient = RiemannClient.tcp(ipAddress, clientPort); riemannReporter = RiemannReporter.forRegistry(metrics) .localHost(hostInfo.hostName.split("\.")[0] + "." + hostInfo.datacenter) .prefixedWith(getReporterPrefix(hostInfo.hostName)) .tags(Arrays.asList("check", "proto", "graph")) .useSeparator(".") .convertDurationsTo(TimeUnit.MILLISECONDS) .convertRatesTo(TimeUnit.SECONDS) .build(new Riemann(riemannClient)); riemannReporter.start(reportingIntervalMillis, TimeUnit.MILLISECONDS); that's how we initialise the client. with...

i have a test where i use httptest like this test_that("check list parameter", { httptest::with_mock_api({ expect_error(testClient$getMatrixData(c(10)), regexp = "listOfMatrixNames needs to be a vector of strings") expect_error(testClient$getMatrixData(10), regexp = "listOfMatrixNames...

static fields don't work because the Fields class is missing in the jar

it would be nice to be able to define all reusable components (parameters, responses ..) in the components section and make it possible to reference them ... maybe like parameterRef("myParam")...

thats what i get when i run ./gradlew test (gradle version 7.4) java.lang.NoSuchMethodError: 'void org.jetbrains.kotlin.cli.common.messages.MessageCollector$DefaultImpls.report$default(org.jetbrains.kotlin.cli.common.messages.MessageCollector, org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity, java.lang.String, org.jetbrains.kotlin.cli.common.messages.CompilerMessageLocation, int, java.lang.Object)' at nl.fabianm.kotlin.plugin.generated.compiler.GeneratedComponentRegistrar.registerProjectComponents(GeneratedPlugin.kt:94) at org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment$Companion.registerExtensionsFromPlugins$cli(KotlinCoreEnvironment.kt:667) at org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment$ProjectEnvironment.registerExtensionsFromPlugins(KotlinCoreEnvironment.kt:169) at org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment.(KotlinCoreEnvironment.kt:216) at org.jetbrains.kotlin.cli.jvm.compiler.KotlinCoreEnvironment.(KotlinCoreEnvironment.kt:111)...

bug

version 4.5.7 this test fails ``` public void test() { OAuth2Options options1 = new OAuth2Options(); options1.getJWTOptions().setIssuer("one"); OAuth2Options options2 = new OAuth2Options(); options2.getJWTOptions().setIssuer("two"); assertEquals(options1.getJWTOptions().getIssuer(), "one"); } ```

bug

i create my parts for a CompleteMultipartUploadRequest like this CompletedPart.builder().eTag(it.etag).partNumber(it.partNumber).checksumSHA256(it.sha256).build() then i get the warning in the logs 2024-06-19 15:58:45.105 [S3Proxy-Jetty-163] WARN o.g.s.o.e.jetty.server.HttpChannel - handleException /scinteco-repong01/01026b95-149b-47fa-91a2-984b83b3ffb7/66a1d4fd-5840-40b6-ad9c-61f34a50ac64/6f532a25-05eb-4c3b-a85c-73f4fde84f4d com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "ChecksumSHA256"...