We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ed16f7 commit caf390dCopy full SHA for caf390d
1 file changed
config.go
@@ -92,7 +92,7 @@ func (c *Config) SessionIdGenerator() string {
92
93
// default sessionId generator => uuid
94
func (c *Config) defaultSessionIdGenerator() string {
95
- id := uuid.NewV4()
+ id, _ := uuid.NewV4()
96
return id.String()
97
}
98
0 commit comments