From f1717c6f8b80e79b12917b4b1cb98b99838a9d57 Mon Sep 17 00:00:00 2001 From: Al Cutter Date: Wed, 23 Oct 2024 12:41:39 +0100 Subject: [PATCH] Reduce distribution frequency (#349) --- trusted_applet/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trusted_applet/main.go b/trusted_applet/main.go index 4eaa09d..85e8398 100644 --- a/trusted_applet/main.go +++ b/trusted_applet/main.go @@ -357,7 +357,7 @@ func runWithNetworking(ctx context.Context) error { WitnessKey: witnessSigningKey, RestDistributorBaseURL: RestDistributorBaseURL, FeedInterval: 30 * time.Second, - DistributeInterval: 5 * time.Second, + DistributeInterval: 30 * time.Second, } if BastionAddr != "" { klog.Infof("Bastion host %q configured", BastionAddr)