woshikid

Results 7 issues of woshikid

As described in #2130 , regex `.*[^-].*` still matches `"foo-db.properties"`. So we can use `[^-]*` or `[^\\.]*` to solve the problem. According to #2083 , we should support dashes "-"...

waiting-for-triage

I'm using org.springframework.cloud:spring-cloud-config-server:3.1.0 According to the doc https://docs.spring.io/spring-cloud-config/docs/current/reference/html/#_quick_start The HTTP service has resources in the following form: ``` /{application}/{profile}[/{label}] /{application}-{profile}.yml /{label}/{application}-{profile}.yml /{application}-{profile}.properties /{label}/{application}-{profile}.properties ``` For example: ``` curl localhost:8888/foo/development curl...

waiting-for-triage

I got some test failures when building this project on Windows which works fine on Linux. In `JGitEnvironmentRepositoryTests` I got: ``` org.opentest4j.AssertionFailedError: expected: "file:././target/repos/another-config-repo/sub/application.yml" but was: "file:././target/repos/another-config-repo/file:D:\test\spring-cloud-config\spring-cloud-config-server\target\repos\another-config-repo\sub\application.yml" at org.springframework.cloud.config.server.environment.JGitEnvironmentRepositoryTests.placeholderInSearchPath(JGitEnvironmentRepositoryTests.java:155) ```...

waiting-for-triage

I uses libfaketime to change the time in docker container. But when I run Java programs with libfaketime, I noticed that it uses 100% of the cpu resources even no...

When using libfaketime in alpine, java program hangs at code `Thread.sleep(1000);`. It can be fixed by setting either `FAKETIME_FORCE_MONOTONIC_FIX=1` or `FAKETIME_DONT_FAKE_MONOTONIC=1`. But when speeding up the program like `FAKETIME="+0 x2"`,...

When using Spring Cloud Config, the priority order of multiple configs is as follow: (both import mode and bootstrap mode) ``` 1. configserver:foo-dev.yml 2. configserver:application-dev.yml 3. configserver:foo.yml 4. configserver:application.yml ```...

waiting-for-triage

Close #302 config with profiles should have higher priority than others.

waiting for feedback