[consensus] remove WAL separator (Refs #785)

We don't really need a separator unless we have complex structures
(rows, cells like RDBMS have https://www.sqlite.org/fileformat.html).
This commit is contained in:
Anton Kaliaev
2017-12-07 11:33:00 -06:00
parent 14ccc8bc4c
commit 07571741c5
3 changed files with 2 additions and 30 deletions

View File

@ -51,7 +51,7 @@ func makePathname() string {
if err != nil {
panic(err)
}
fmt.Println(p)
// fmt.Println(p)
sep := string(filepath.Separator)
return strings.Replace(p, sep, "_", -1)
}