Skip to content

Commit

Permalink
remove default value in yaml unmarshalling (attribute does not exist)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Delacour committed Nov 12, 2021
1 parent e143298 commit 3532073
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions provider/ovh/ovh.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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 {
Expand Down

0 comments on commit 3532073

Please sign in to comment.