fix fmt.Errorf missing args

pull/21522/head
Menghan Li 5 years ago committed by GitHub
parent b1547c9d19
commit 0f091953c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      tools/http2_interop/s6.5.go

@ -86,7 +86,7 @@ func testAllSettingsFramesAcked(ctx *HTTP2InteropCtx) error {
settingsFramesReceived += 1
if settingsFramesReceived == 1 {
if f.Header.Flags&SETTINGS_FLAG_ACK > 0 {
return fmt.Errorf("settings frame should not have used ack: %v")
return fmt.Errorf("settings frame should not have used ack: %v", f)
}
continue
}

Loading…
Cancel
Save