fix(cmd/influxd): prefix temporary engine dir with e2e

pull/15894/head
Chris Goller 2019-11-20 16:04:27 -06:00
parent 10d1a49278
commit 354b58005f
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ func (t *TemporaryEngine) Open(ctx context.Context) error {
return nil
}
path, err := ioutil.TempDir("", "")
path, err := ioutil.TempDir("", "e2e")
if err != nil {
return err
}