1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 20:41:57 +00:00

formatting

Former-commit-id: 037081db5d6d4434e873ca8b75334ee43e046b6a
This commit is contained in:
Gerasimos (Makis) Maropoulos
2019-08-17 10:06:20 +03:00
parent 00967408dc
commit 07046ab978
112 changed files with 477 additions and 517 deletions

View File

@@ -55,7 +55,6 @@ func New(path string, fileMode os.FileMode) (*Database, error) {
service, err := bolt.Open(path, fileMode,
&bolt.Options{Timeout: 20 * time.Second},
)
if err != nil {
golog.Errorf("unable to initialize the BoltDB-based session database: %v", err)
return nil, err
@@ -203,7 +202,6 @@ func (db *Database) Acquire(sid string, expires time.Duration) (lifetime session
_, err = root.CreateBucketIfNotExists(bsid)
return
})
if err != nil {
golog.Debugf("unable to acquire session '%s': %v", sid, err)
return sessions.LifeTime{}
@@ -285,7 +283,6 @@ func (db *Database) Get(sid string, key string) (value interface{}) {
return sessions.DefaultTranscoder.Unmarshal(valueBytes, &value)
})
if err != nil {
golog.Debugf("session '%s' key '%s' not found", sid, key)
}