From 6b9817b622b26dede06dbdb369aad0f3f2f63aba Mon Sep 17 00:00:00 2001 From: Giles Westwood Date: Wed, 27 Mar 2024 14:13:48 +0100 Subject: [PATCH] test to check quoting is added --- example.properties | 3 ++- example.properties.j2 | 3 ++- example.properties.yml | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/example.properties b/example.properties index d33348d..3199b8d 100644 --- a/example.properties +++ b/example.properties @@ -5,4 +5,5 @@ org.wibble.test.long.property=this is a long prop that is space separated to tes org.wibble.brokerURL=tcp://wibble:61616?jms.useAsyncSend=true # testing - in key org.wibble.message-listener.s3.accessKey=blar - +# testing weird cron +org.wibble.cronFormat=*/5 * * * * * diff --git a/example.properties.j2 b/example.properties.j2 index 4434392..5d6e358 100644 --- a/example.properties.j2 +++ b/example.properties.j2 @@ -5,4 +5,5 @@ org.wibble.test.long.property={{ ORG_WIBBLE_TEST_LONG_PROPERTY }} org.wibble.brokerURL={{ ORG_WIBBLE_BROKER_URL }} # testing - in key org.wibble.message-listener.s3.accessKey={{ ORG_WIBBLE_MESSAGE_LISTENER_S3_ACCESS_KEY }} - +# testing weird cron +org.wibble.cronFormat={{ ORG_WIBBLE_CRON_FORMAT }} diff --git a/example.properties.yml b/example.properties.yml index 1ccc51f..6bc86ad 100644 --- a/example.properties.yml +++ b/example.properties.yml @@ -1,4 +1,5 @@ ORG_WIBBLE_BROKER_URL: tcp://wibble:61616?jms.useAsyncSend=true +ORG_WIBBLE_CRON_FORMAT: '*/5 * * * * *' ORG_WIBBLE_MESSAGE_LISTENER_S3_ACCESS_KEY: blar ORG_WIBBLE_TEST_CAMEL_CAPS: "20" ORG_WIBBLE_TEST_LONG_PROPERTY: this is a long prop that is space separated to test whether wrapping occurs in the go yaml lib