From 8f8d142c9195eb051b3e90a408e47ae4ae006626 Mon Sep 17 00:00:00 2001 From: Changyu Moon <121847433+window9u@users.noreply.github.com> Date: Wed, 25 Dec 2024 17:58:53 +0900 Subject: [PATCH] fix comment --- server/backend/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/backend/config.go b/server/backend/config.go index 82d6dc0c7..5e3ad5f01 100644 --- a/server/backend/config.go +++ b/server/backend/config.go @@ -73,13 +73,13 @@ type Config struct { // AuthWebhookCacheUnauthTTL is the TTL value to set when caching the unauthorized result. AuthWebhookCacheUnauthTTL string `yaml:"AuthWebhookCacheUnauthTTL"` - // EventWebhookMaxRetries is the max count that retries the project webhook. + // EventWebhookMaxRetries is the max count that retries the project event webhook. EventWebhookMaxRetries uint64 `yaml:"EventWebhookMaxRetries"` - // EventWebhookBaseWaitInterval is the base of retrying exponential backoff the project webhook. + // EventWebhookBaseWaitInterval is the base of retrying exponential backoff the project event webhook. EventWebhookBaseWaitInterval string `yaml:"EventWebhookBaseWaitInterval"` - // EventWebhookMaxWaitInterval is the max interval that waits before retrying the project webhook. + // EventWebhookMaxWaitInterval is the max interval that waits before retrying the project event webhook. EventWebhookMaxWaitInterval string `yaml:"EventWebhookMaxWaitInterval"` // EventWebhookRequestTimeout is the time that waits time for response the project webhook.