We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1aec144 commit ac43ea3Copy full SHA for ac43ea3
modules/runtime-common/src/main/resources/reference.conf
@@ -13,7 +13,7 @@ snowplow.defaults: {
13
14
webhook: {
15
tags: {}
16
- heartbeat: "60 minutes"
+ heartbeat: "5 minutes"
17
}
18
19
telemetry: {
modules/runtime-common/src/test/scala/com/snowplowanalytics/snowplow/runtime/WebhookConfigSpec.scala
@@ -103,7 +103,7 @@ class WebhookConfigSpec extends Specification {
103
val expected = Webhook.Config(
104
endpoint = Some(Uri.unsafeFromString("http://example.com/xyz?abc=123")),
105
tags = Map.empty,
106
- heartbeat = 60.minutes
+ heartbeat = 5.minutes
107
)
108
109
result.as[ConfigWrapper] must beRight { (w: ConfigWrapper) =>
0 commit comments