remove converter plugin memoize function

This commit is contained in:
Brad Rydzewski 2019-11-20 16:04:01 -08:00
parent 12ca262373
commit f46941554c

View file

@ -80,13 +80,11 @@ func provideConvertPlugin(client *scm.Client, conf spec.Config) core.ConvertServ
converter.Jsonnet(
conf.Jsonnet.Enabled,
),
converter.Memoize(
converter.Remote(
conf.Convert.Endpoint,
conf.Convert.Secret,
conf.Convert.Extension,
conf.Convert.SkipVerify,
),
converter.Remote(
conf.Convert.Endpoint,
conf.Convert.Secret,
conf.Convert.Extension,
conf.Convert.SkipVerify,
),
)
}