itshan
itshan
``` implicit def Json4sHitReader[T](implicit json4s: Serialization, formats: Formats, mf: Manifest[T]): HitReader[T] = new HitReader[T] { override def read(hit: Hit): Try[T] = Try { json4s.read[T](hit.sourceAsString) } } ```
e.g I have prometheus config below which want only replace CONSUL_URL from system environment. but it will replace $1 left blank there which make __metrics_path__ not correct. ``` - job_name:...
 The issue is that related to javascript when zipkin received data from HystrixStreamTask solved by ``` spring: sleuth: sampler: probability: 1.0 scheduled: skipPattern: org.springframework.cloud.netflix.hystrix.stream.HystrixStreamTask ``` But this not solved...
`java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0 at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248) at java.base/java.util.Objects.checkIndex(Objects.java:372) at java.base/java.util.ArrayList.get(ArrayList.java:459) at com.pig4cloud.plugin.excel.handler.ManySheetWriteHandler.write(ManySheetWriteHandler.java:55)`
``` version: '2' services: jenkinsci-slave5: image: jenkinsci/jnlp-slave environment: JENKINS_AGENT_NAME: jenkins-slave JENKINS_SECRET: fac1f848bf46d90440979a3e9914f5e412b49b7ebf1fe0adc4bfa2ad2fcd349b JENKINS_URL: master volumes: - /home/jenkins/slave-1-home:/home/jenkins - /home/jenkins/m2/repository:/home/.m2/repository stdin_open: true tty: true labels: io.rancher.container.pull_image: alway ``` We are want...
Seems that pipelineOuter not working in version 2.4.4
指定用户发送的消息才能回复
### SQLDelight Version 2.0.1 ### Application Operating System Native ### Describe the Bug coroutines part ```kotlin db.queries.selectAllName(query = name).asFlow() .mapToList(ioDispatcher) ``` sql part ```sql INSERT INTO ...VALUES(...) RETURNING id; ```...
I have a Declaring a version catalog below ``` dependencyResolutionManagement { versionCatalogs { create("extraLibs") { from(files("gradle/extra.libs.versions.toml")) } } } ``` gradle refreshVersions may update the version under gradle/extra.libs.versions.toml as well.
I got some errors below after upgraded to kotlin 2.0 beta: ``` clear[macosArm64] FAILED io.mockative.NoSuchMockException at /opt/buildAgent/work/6285e88d8d1c1e7f/kotlin/kotlin-native/runtime/src/main/kotlin/kotlin/Throwable.kt:28 ```