summaryrefslogtreecommitdiff
path: root/internal/config/flags.go
diff options
context:
space:
mode:
authorLibravatar kim <89579420+NyaaaWhatsUpDoc@users.noreply.github.com>2023-02-10 20:16:01 +0000
committerLibravatar GitHub <noreply@github.com>2023-02-10 20:16:01 +0000
commit70739d32cc3894ce55f889c2e2fdb09d41e33df9 (patch)
treed7e0633f0f7f2a6267f6bc79f5966b86cf39f419 /internal/config/flags.go
parent[chore] small changes missed in previous dereferencer.GetAccount() PRs (#1467) (diff)
downloadgotosocial-70739d32cc3894ce55f889c2e2fdb09d41e33df9.tar.xz
[performance] remove throttling timers (#1466)
* remove throttling timers, support setting retry-after, use retry-after in transport * remove unused variables * add throttling-retry-after to cmd flags * update envparsing to include new throttling-retry-after * update example config to include retry-after documentation * also support retry-after formatted as date-time, ensure max backoff time --------- Signed-off-by: kim <grufwub@gmail.com>
Diffstat (limited to 'internal/config/flags.go')
-rw-r--r--internal/config/flags.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/config/flags.go b/internal/config/flags.go
index e594615d1..d8c31368b 100644
--- a/internal/config/flags.go
+++ b/internal/config/flags.go
@@ -139,6 +139,7 @@ func (s *ConfigState) AddServerFlags(cmd *cobra.Command) {
cmd.Flags().String(AdvancedCookiesSamesiteFlag(), cfg.AdvancedCookiesSamesite, fieldtag("AdvancedCookiesSamesite", "usage"))
cmd.Flags().Int(AdvancedRateLimitRequestsFlag(), cfg.AdvancedRateLimitRequests, fieldtag("AdvancedRateLimitRequests", "usage"))
cmd.Flags().Int(AdvancedThrottlingMultiplierFlag(), cfg.AdvancedThrottlingMultiplier, fieldtag("AdvancedThrottlingMultiplier", "usage"))
+ cmd.Flags().Duration(AdvancedThrottlingRetryAfterFlag(), cfg.AdvancedThrottlingRetryAfter, fieldtag("AdvancedThrottlingRetryAfter", "usage"))
})
}