Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for retryIntvl (0.05 sec)

  1. internal/logger/target/http/http.go

    		// if we have reached the count send at once
    		// or we have crossed last second before batch was sent, send at once
    		lastBatchProcess = time.Now()
    
    		var retries int
    		retryIntvl := h.config.RetryIntvl
    		if retryIntvl <= 0 {
    			retryIntvl = 3 * time.Second
    		}
    
    		maxRetries := h.config.MaxRetry
    
    	retry:
    		// If the channel reaches above half capacity
    		// we spawn more workers. The workers spawned
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  2. internal/logger/config.go

    			BatchSize:   batchSize,
    			QueueSize:   queueSize,
    			QueueDir:    getCfgVal(EnvLoggerWebhookQueueDir, k, kv.Get(QueueDir)),
    			MaxRetry:    maxRetry,
    			RetryIntvl:  retryInterval,
    			Name:        loggerTargetNamePrefix + k,
    		}
    	}
    	return cfg, nil
    }
    
    func lookupAuditWebhookConfig(scfg config.Config, cfg Config) (Config, error) {
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 18.7K bytes
    - Viewed (0)
Back to top