Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkWarmBackend (0.15 sec)

  1. cmd/tier.go

    // operations on the corresponding warmbackend.
    func (config *TierConfigMgr) Verify(ctx context.Context, tier string) error {
    	d, err := config.getDriver(ctx, tier)
    	if err != nil {
    		return err
    	}
    	return checkWarmBackend(ctx, d)
    }
    
    // Empty returns if tier targets are empty
    func (config *TierConfigMgr) Empty() bool {
    	if config == nil {
    		return true
    	}
    	return len(config.ListTiers()) == 0
    }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 20:44:05 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top