Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Rockarts (0.16 sec)

  1. internal/dsync/drwmutex.go

    	}()
    }
    
    func forceUnlock(ctx context.Context, ds *Dsync, id string) {
    	ctx, cancel := context.WithTimeout(ctx, ds.Timeouts.ForceUnlockCall)
    	defer cancel()
    
    	restClnts, _ := ds.GetLockers()
    
    	args := LockArgs{
    		UID: id,
    	}
    
    	var wg sync.WaitGroup
    	for index, c := range restClnts {
    		wg.Add(1)
    		// Send refresh request to all nodes
    		go func(index int, c NetLocker) {
    			defer wg.Done()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 19.7K bytes
    - Viewed (0)
Back to top