Skip to content

Commit 0034bf5

Browse files
committed
BUG/MINOR: ignore empty runtime API commands
1 parent b53c168 commit 0034bf5

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

handlers/raw.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ func executeRuntimeActions(actionsStr string, client client_native.HAProxyClient
189189
continue
190190
}
191191
action := params[0]
192+
if action == "" {
193+
continue
194+
}
192195
switch action {
193196
case "SetFrontendMaxConn":
194197
if len(params) > 2 {

0 commit comments

Comments
 (0)