Skip to content

Commit

Permalink
do not merge - breaking changes
Browse files Browse the repository at this point in the history
This changes intentionally break the component and are meant
to verify if ci intercepts these failures.

Signed-off-by: Andrea Panattoni <[email protected]>
  • Loading branch information
zeeke committed Nov 2, 2023
1 parent 513daf6 commit d952c9e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cmd/sriov-network-config-daemon/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ func init() {
}

func main() {
if true {
panic("PANIC!!!")
}
if err := rootCmd.Execute(); err != nil {
glog.Exitf("Error executing mcd: %v", err)
}
Expand Down
3 changes: 3 additions & 0 deletions cmd/webhook/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ func init() {
}

func main() {
if true {
panic("PANIC!!!")
}
flag.Set("logtostderr", "true")
flag.Parse()
glog.Info("Run sriov-network-operator-webhook")
Expand Down
1 change: 1 addition & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ func init() {
}

func main() {
fmt.Println("Custom changes!")
var metricsAddr string
var enableLeaderElection bool
var probeAddr string
Expand Down

0 comments on commit d952c9e

Please sign in to comment.