We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ec1c9c commit 988e295Copy full SHA for 988e295
internal/configuration/locations/locations.go
@@ -10,7 +10,6 @@ import (
10
"os"
11
"path/filepath"
12
13
- "github.com/elastic/elastic-package/internal/common"
14
"github.com/elastic/elastic-package/internal/environment"
15
)
16
@@ -95,8 +94,7 @@ func (loc LocationManager) ServiceOutputDir() string {
95
94
96
// CacheDir returns the directory with cached fields
97
func (loc LocationManager) CacheDir(name string) string {
98
- defaultPath := filepath.Join(loc.stackPath, cacheDir, name)
99
- return filepath.Join(defaultPath, common.CreateTestRunID())
+ return filepath.Join(loc.stackPath, cacheDir, name)
100
}
101
102
// configurationDir returns the configuration directory location
0 commit comments