Skip to content

Commit 9c21e87

Browse files
committed
fix missing quotes
1 parent 9d05489 commit 9c21e87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ func ParseConf(file string) error {
2525
}
2626

2727
type CtrlConfig struct {
28+
Debug *bool `yaml:"debug,omitempty"` // default: false
2829
PFCPAddress *string `yaml:"pfcp-address,omitempty"`
2930
HTTPAddress *string `yaml:"http-address,omitempty"`
30-
HTTPPort *string `yaml:http-port,omitempty"` // default: 80
31-
Debug *bool `yaml:debug,omitempty"`
31+
HTTPPort *string `yaml:"http-port,omitempty"` // default: 80
3232
}

0 commit comments

Comments
 (0)