mirror of
https://github.com/kataras/iris.git
synced 2025-12-17 18:07:01 +00:00
add a new simple, builtin requestid middleware (makes use of the Context.SetID/GetID methods too)
Former-commit-id: d46bce7c1964adada01934aa95daf389c141defc
This commit is contained in:
@@ -5,7 +5,7 @@ import (
|
||||
|
||||
"github.com/kataras/iris/v12/context"
|
||||
|
||||
uuid "github.com/iris-contrib/go.uuid"
|
||||
"github.com/google/uuid"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -71,7 +71,7 @@ func (c Config) Validate() Config {
|
||||
|
||||
if c.SessionIDGenerator == nil {
|
||||
c.SessionIDGenerator = func(context.Context) string {
|
||||
id, _ := uuid.NewV4()
|
||||
id, _ := uuid.NewRandom()
|
||||
return id.String()
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user