minux
minux
`$.*~` can be used to retrieve the keys. You can test it here: https://jsonpath.com/ However, CentralDogma extracts values instead of keys. We should fix that.
Currently, a Central Dogma server raises an exception when mirroring from local to remote if the remote branch doesn't exist: https://github.com/line/centraldogma/blob/03540a1aee5ac7ee24c4b78ae04336706190ed74/server-mirror-git/src/main/java/com/linecorp/centraldogma/server/internal/mirror/AbstractGitMirror.java#L400-L409 We can probably just create the remote branch as...
Motivation: When a non-relocated module (Module A) is used by a relocated module (Module B), running `:B:shadedTest` results in a `NoClassDefError` because Module A is not included in Module B's...
The methods in `ProxyConfig` take an `InetSocketAddress` as an argument. e.g. `ProxyConfig.connect(InetSocketAddress)` `InetSocketAddress` resolves the address only once when it's created so it doesn't respect TTL of a DNS record,...
``` java.lang.AssertionError: Expecting actual: [Endpoint{2.2.2.2:30000, weight=1000}, Endpoint{3.3.3.3:30000, weight=1000}] to contain exactly in any order: [Endpoint{2.2.2.2:30000, weight=1000}, Endpoint{3.3.3.3:30000, weight=1000}, Endpoint{4.4.4.4:30000, weight=1000}] but could not find the following elements: [Endpoint{4.4.4.4:30000, weight=1000}] at...
Motivation: We decided to repurpose the `MirrorCredential` to manage all repository credentials, not just those specific to mirroring. To reflect this role, we should remove `Mirror` prefix from the class...
Motivation: We decided to repurpose the `MirrorCredential` to manage all repository credentials, not just those specific to mirroring. The hostnamePatterns property, which was specific to mirroring, is no longer necessary....
Test failure: `com.linecorp.armeria.internal.common.stream.FixedStreamMessageTest.[2] stream=com.linecorp.armeria.internal.common.stream.OneElementFixedStreamMessage@28ab3c60` ``` java.lang.AssertionError: Expecting AtomicReference[com.linecorp.armeria.internal.common.stream.NoopSubscription@763d7eef] to have value: com.linecorp.armeria.internal.common.stream.NoopSubscription@763d7eef but did not. at com.linecorp.armeria.internal.common.stream.FixedStreamMessageTest.raceBetweenSubscribeAndAbort_startSubscribeFirst_eventLoopAbortFirst(FixedStreamMessageTest.java:266) at java.base/java.lang.reflect.Method.invoke(Method.java:578) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:179) at java.base/java.util.stream.ReferencePipeline$3$1.accept(ReferencePipeline.java:197) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) at...
Motivation: I found this log that is unnecessary when an `XdsEndpointGroup` is closed: ``` Unexpected exception while closing a request: io.grpc.StatusRuntimeException: CANCELLED: Cancelled by client with StreamObserver.onError() at io.grpc.Status.asRuntimeException(Status.java:533) at...
``` org.opentest4j.AssertionFailedError: expected: /127.0.0.1:34782 but was: /127.0.0.1:34794 at app//com.linecorp.armeria.xds.client.endpoint.DynamicHealthCheckTest.gracefulEndpointUpdate(DynamicHealthCheckTest.java:272) at [email protected]/java.lang.reflect.Method.invoke(Method.java:566) at [email protected]/java.util.ArrayList.forEach(ArrayList.java:1541) at [email protected]/java.util.ArrayList.forEach(ArrayList.java:1541) ```