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

.

parent 0cb5a54d
......@@ -133,8 +133,8 @@ func NewDB(stor IStorage) *DB {
at0 := stor.AddWatch(db.watchq)
db.δtail = NewΔTail(at0) // init to (at0, at0]
go db.watcher()
return db
}
......@@ -192,7 +192,15 @@ func (opt *ConnOptions) String() string {
if opt.NoSync {
s += "no"
}
s += "sync)"
s += "sync"
s += ", "
if opt.NoPool {
s += "no"
}
s += "pool"
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