Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for startLockServers (0.11 sec)

  1. internal/dsync/dsync_test.go

    	testDrwMutexForceUnlockCallTimeout = 250 * time.Millisecond
    	testDrwMutexRefreshInterval        = 100 * time.Millisecond
    )
    
    // TestMain initializes the testing framework
    func TestMain(m *testing.M) {
    	startLockServers()
    
    	// Initialize locker clients for dsync.
    	var clnts []NetLocker
    	for i := 0; i < len(nodes); i++ {
    		clnts = append(clnts, newClient(nodes[i].URL))
    	}
    
    	ds = &Dsync{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jun 19 14:35:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. internal/dsync/dsync-server_test.go

    	}
    	if err != nil {
    		lh.writeErrorResponse(w, err)
    		return
    	}
    }
    
    func stopLockServers() {
    	for i := 0; i < numberOfNodes; i++ {
    		nodes[i].Close()
    	}
    }
    
    func startLockServers() {
    	for i := 0; i < numberOfNodes; i++ {
    		lsrv := &lockServer{
    			mutex:   sync.Mutex{},
    			lockMap: make(map[string]int64),
    		}
    		lockServer := lockServerHandler{
    			lsrv: lsrv,
    		}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jan 23 16:46:37 UTC 2023
    - 8.3K bytes
    - Viewed (0)
Back to top