Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for replLogOnceIf (0.09 sec)

  1. cmd/bucket-replication.go

    		p.mu.RLock()
    		prio := p.priority
    		maxWorkers := p.maxWorkers
    		p.mu.RUnlock()
    		switch prio {
    		case "fast":
    			replLogOnceIf(GlobalContext, fmt.Errorf("Unable to keep up with incoming traffic"), string(replicationSubsystem), logger.WarningKind)
    		case "slow":
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 10 06:49:55 UTC 2024
    - 116.1K bytes
    - Viewed (0)
  2. cmd/logging.go

    	logger.LogIf(ctx, "proxy", err, errKind...)
    }
    
    func replLogIf(ctx context.Context, err error, errKind ...interface{}) {
    	logger.LogIf(ctx, "replication", err, errKind...)
    }
    
    func replLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    	logger.LogOnceIf(ctx, "replication", err, id, errKind...)
    }
    
    func iamLogOnceIf(ctx context.Context, err error, id string, errKind ...interface{}) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 03 18:49:48 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    			if err != nil {
    				replLogOnceIf(ctx,
    					fmt.Errorf("Unable to heal service account from peer site %s -> %s : %w", latestPeerName, peerName, err),
    					fmt.Sprintf("heal-user-%s", user))
    				continue
    			}
    
    			_, policy, err := globalIAMSys.GetServiceAccount(ctx, creds.AccessKey)
    			if err != nil {
    				replLogOnceIf(ctx,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
Back to top