mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-21 03:16:00 -08:00
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:
parent
d2421a6916
commit
b3901827ee
|
@ -76,7 +76,7 @@ func main() {
|
||||||
glog.Fatal("Must provide a path...")
|
glog.Fatal("Must provide a path...")
|
||||||
}
|
}
|
||||||
|
|
||||||
persistence, err := tiered.NewLevelDBMetricPersistence(*storageRoot)
|
persistence, err := tiered.NewLevelDBPersistence(*storageRoot)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
glog.Fatal(err)
|
glog.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,7 @@ func main() {
|
||||||
glog.Fatal("Must provide a path...")
|
glog.Fatal("Must provide a path...")
|
||||||
}
|
}
|
||||||
|
|
||||||
persistences, err := tiered.NewLevelDBMetricPersistence(*storageRoot)
|
persistences, err := tiered.NewLevelDBPersistence(*storageRoot)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
glog.Fatal(err)
|
glog.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue