From 8f32f44f9e01dd5ba505e0ea66a5d87f6aedf71d Mon Sep 17 00:00:00 2001 From: Stefan Schwarz Date: Thu, 8 Oct 2020 17:38:24 +0200 Subject: [PATCH] fix oss build: wrong type for Memoize parameter and return value --- plugin/config/memoize_oss.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/config/memoize_oss.go b/plugin/config/memoize_oss.go index 6cacf629..d901b7bc 100644 --- a/plugin/config/memoize_oss.go +++ b/plugin/config/memoize_oss.go @@ -24,6 +24,6 @@ import ( // This micro-optimization is intended for multi-pipeline // projects that would otherwise covert the file for each // pipeline execution. -func Memoize(base core.ConvertService) core.ConvertService { +func Memoize(base core.ConfigService) core.ConfigService { return new(noop) }