chore: lint fixes (#833)

* chore: added basic server startup test

Signed-off-by: Alex Jones <alexsimonjones@gmail.com>

* chore: refactored wg.add move

Signed-off-by: Alex Jones <alexsimonjones@gmail.com>

---------

Signed-off-by: Alex Jones <alexsimonjones@gmail.com>
This commit is contained in:
Alex Jones
2024-01-04 17:03:32 +00:00
committed by GitHub
parent a77426593d
commit a7e9b486ba
5 changed files with 16 additions and 9 deletions

4
pkg/cache/cache.go vendored
View File

@@ -93,9 +93,9 @@ func GetCacheConfiguration() (ICache, error) {
cache = &FileBasedCache{}
}
cache.Configure(cacheInfo)
err_config := cache.Configure(cacheInfo)
return cache, nil
return cache, err_config
}
func AddRemoteCache(cacheInfo CacheProvider) error {