修复一处注释

This commit is contained in:
刘祥超
2022-08-07 11:18:16 +08:00
parent 10665c0f37
commit 28cb3c383d
2 changed files with 6 additions and 2 deletions

6
go.mod
View File

@@ -2,7 +2,11 @@ module github.com/TeaOSLab/EdgeNode
go 1.18
replace github.com/TeaOSLab/EdgeCommon => ../EdgeCommon
replace (
github.com/TeaOSLab/EdgeCommon => ../EdgeCommon
github.com/fsnotify/fsnotify => /Users/WorkSpace/Projects/fsnotify
rogchap.com/v8go => /Users/Workspace/Projects/v8go
)
require (
github.com/TeaOSLab/EdgeCommon v0.0.0-00010101000000-000000000000

View File

@@ -186,7 +186,7 @@ func httpRequestNextId() string {
httpRequestTimestamp = unixTime
}
// timestamp + requestId + nodeId
// timestamp + nodeId + requestId
return unixTimeString + teaconst.NodeIdString + strconv.Itoa(int(atomic.AddInt32(&httpRequestId, 1)))
}