1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-02 15:16:51 +02:00
This commit is contained in:
Chris Lu 2021-04-03 11:37:13 -07:00
parent 5e64f65632
commit 5dca98fe71

View file

@ -15,7 +15,7 @@ type SnowflakeSequencer struct {
func NewSnowflakeSequencer(nodeid string) (*SnowflakeSequencer, error) {
nodeid_hash := hash(nodeid) & 0x3ff
glog.V(0).Infof("use snowfalke seq id generator, nodeid:%s hex_of_nodeid: %x", nodeid, nodeid_hash)
glog.V(0).Infof("use snowflake seq id generator, nodeid:%s hex_of_nodeid: %x", nodeid, nodeid_hash)
node, err := snowflake.NewNode(int64(nodeid_hash))
if err != nil {
fmt.Println(err)