Commit 1cfa529e authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 0cb5a54d
...@@ -133,8 +133,8 @@ func NewDB(stor IStorage) *DB { ...@@ -133,8 +133,8 @@ func NewDB(stor IStorage) *DB {
at0 := stor.AddWatch(db.watchq) at0 := stor.AddWatch(db.watchq)
db.δtail = NewΔTail(at0) // init to (at0, at0] db.δtail = NewΔTail(at0) // init to (at0, at0]
go db.watcher() go db.watcher()
return db return db
} }
...@@ -192,7 +192,15 @@ func (opt *ConnOptions) String() string { ...@@ -192,7 +192,15 @@ func (opt *ConnOptions) String() string {
if opt.NoSync { if opt.NoSync {
s += "no" s += "no"
} }
s += "sync)" s += "sync"
s += ", "
if opt.NoPool {
s += "no"
}
s += "pool"
s += ")"
return s return s
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment