github.com/ronaksoft/rony@v0.16.26-0.20230807065236-1743dbfe6959/internal/cluster/gossip/constants.go (about)

     1  package gossipCluster
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  /*
     8     Creation Time: 2021 - Jan - 01
     9     Created by:  (ehsan)
    10     Maintainers:
    11        1.  Ehsan N. Moosa (E2)
    12     Auditor: Ehsan N. Moosa (E2)
    13     Copyright Ronak Software Group 2020
    14  */
    15  
    16  const (
    17  	gossipUpdateTimeout     = time.Second * 5
    18  	gossipLeaveTimeout      = time.Second * 30
    19  	clusterMessageRateLimit = 100
    20  )