mirror of https://github.com/docker/docs.git
fix publish workflow
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
parent
2819c9d991
commit
b37db0f4a5
|
@ -70,13 +70,13 @@ func (s *AwsLambdaInvokeCmd) Run() error {
|
|||
Region: aws.String(s.Region),
|
||||
})
|
||||
|
||||
out, err := svc.Invoke(&lambda.InvokeInput{
|
||||
_, err := svc.Invoke(&lambda.InvokeInput{
|
||||
FunctionName: aws.String(s.LambdaFunction),
|
||||
})
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
log.Printf("INFO: lambda function %q invoked successfully: %s\n", s.LambdaFunction, *out.LogResult)
|
||||
log.Printf("INFO: lambda function %q invoked successfully\n", s.LambdaFunction)
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue