Git repo patterns need single-quotes

See https://github.com/spring-cloud/spring-cloud-config/issues/727
This commit is contained in:
Jayraj Jog
2017-06-23 15:34:17 -07:00
committed by Jayraj Jog
parent 0da1397153
commit 6d1e9aaeae

View File

@@ -234,13 +234,13 @@ spring:
repos:
development:
pattern:
- */development
- */staging
- '*/development'
- '*/staging'
uri: https://github.com/development/config-repo
staging:
pattern:
- */qa
- */production
- '*/qa'
- '*/production'
uri: https://github.com/staging/config-repo
----