From 44cd65b5d70072a5d8b3a0e2b4067efd9a53b486 Mon Sep 17 00:00:00 2001 From: Mario Rodriguez Molins Date: Mon, 19 Feb 2024 13:23:01 +0100 Subject: [PATCH] Remove leftovers after changing path for service state --- internal/configuration/locations/locations.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/internal/configuration/locations/locations.go b/internal/configuration/locations/locations.go index 0407f31a42..3f4fba0fbd 100644 --- a/internal/configuration/locations/locations.go +++ b/internal/configuration/locations/locations.go @@ -35,8 +35,6 @@ var ( rallyCorpusDir = filepath.Join(temporaryDir, "rally_corpus") kubernetesDeployerDir = filepath.Join(deployerDir, "kubernetes") serviceOutputDir = filepath.Join(temporaryDir, "output") - - serviceSetupDir = filepath.Join(stackDir, "service_setup") ) // LocationManager maintains an instance of a config path location @@ -110,11 +108,6 @@ func (loc LocationManager) CacheDir(name string) string { return filepath.Join(loc.stackPath, cacheDir, name) } -// ServiceSetupDir returns the directory to store resources to be re-used in setup or tear-down processes -func (loc LocationManager) ServiceSetupDir() string { - return filepath.Join(loc.stackPath, serviceSetupDir) -} - // configurationDir returns the configuration directory location // If a environment variable named as in elasticPackageDataHome is present, // the value is used as is, overriding the value of this function.