Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ReloadSiteReplicationConfig (0.42 sec)

  1. cmd/notification.go

    		wg.Wait()
    		xioutil.SafeClose(ch)
    	}(&wg, ch)
    
    	return ch
    }
    
    // ReloadSiteReplicationConfig - tells all peer minio nodes to reload the
    // site-replication configuration.
    func (sys *NotificationSys) ReloadSiteReplicationConfig(ctx context.Context) []error {
    	errs := make([]error, len(sys.allPeerClients))
    	var wg sync.WaitGroup
    	for index := range sys.peerClients {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 45.9K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    	if objAPI == nil {
    		return errServerNotInitialized
    	}
    
    	if err = saveConfig(ctx, objAPI, getSRStateFilePath(), buf); err != nil {
    		return err
    	}
    
    	for _, err := range globalNotificationSys.ReloadSiteReplicationConfig(ctx) {
    		replLogIf(ctx, err)
    	}
    
    	c.Lock()
    	defer c.Unlock()
    	c.state = state
    	c.enabled = len(c.state.Peers) != 0
    	return nil
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 184.7K bytes
    - Viewed (0)
Back to top