From 3532073a26178a4049f8940159e27a3870511375 Mon Sep 17 00:00:00 2001 From: Benjamin Delacour Date: Fri, 12 Nov 2021 22:04:01 +0100 Subject: [PATCH] remove default value in yaml unmarshalling (attribute does not exist) --- provider/ovh/ovh.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/provider/ovh/ovh.go b/provider/ovh/ovh.go index 242350f..9d10210 100644 --- a/provider/ovh/ovh.go +++ b/provider/ovh/ovh.go @@ -3,8 +3,8 @@ package ovh import ( "fmt" - "github.com/ovh/go-ovh/ovh" "github.com/messagebird/sachet" + "github.com/ovh/go-ovh/ovh" ) type Config struct { @@ -15,7 +15,7 @@ type Config struct { ServiceName string `yaml:"service_name"` SenderForResponse string `yaml:"sender_for_response"` - NoStopClause bool `default:"false" yaml:"no_stop_clause"` + NoStopClause bool `yaml:"no_stop_clause"` } type Ovh struct {