Fix persistence references in tools subdir.

These had escaped me because the tools aren't rebuilt if there are
changes outside of the respective tool itself.

Change-Id: I3e69631babdd95b18e698eb79098dfa59f60f597
This commit is contained in:
Julius Volz 2014-04-17 15:28:22 +02:00
parent d2421a6916
commit b3901827ee
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ func main() {
glog.Fatal("Must provide a path...")
}
persistence, err := tiered.NewLevelDBMetricPersistence(*storageRoot)
persistence, err := tiered.NewLevelDBPersistence(*storageRoot)
if err != nil {
glog.Fatal(err)
}

View File

@ -35,7 +35,7 @@ func main() {
glog.Fatal("Must provide a path...")
}
persistences, err := tiered.NewLevelDBMetricPersistence(*storageRoot)
persistences, err := tiered.NewLevelDBPersistence(*storageRoot)
if err != nil {
glog.Fatal(err)
}