From 4dc78eddc7d23e5a9090abd307ca5fc87bddb8b7 Mon Sep 17 00:00:00 2001 From: Matt Weagle Date: Sun, 1 Jul 2018 07:06:16 -0700 Subject: [PATCH] Minor cleanup --- service/service.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/service/service.go b/service/service.go index b1a87d9..e492235 100644 --- a/service/service.go +++ b/service/service.go @@ -232,11 +232,6 @@ func New(connections *Connections, api *sparta.API) []*sparta.LambdaAWSInfo { lambdaFunctions = append(lambdaFunctions, gws.newOnPutCallRekognition(api)) lambdaFunctions = append(lambdaFunctions, gws.newOnS3PutCallPolly(api)) lambdaFunctions = append(lambdaFunctions, gws.newOnS3PutGenerateSummary(api)) - lambdaFunctions = append(lambdaFunctions, gws.newOnFeedbackDetectSentiment(api)) - - // Add a decorator to ensure that the bucket that we're using has the proper - // policy set so that the "summaries" are publicly available - return lambdaFunctions }