Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
Signed-off-by: Guy Daich <guy.daich@sap.com>
  • Loading branch information
guydc committed Apr 18, 2024
1 parent 414c66d commit 3788ba7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/v1alpha1/ext_proc_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ type ExtProcBodyProcessingMode string

const (
// StreamedExtProcBodyProcessingMode will stream the body to the server in pieces as they arrive at the proxy.
StreamedExtProcBodyProcessingMode ExtProcBodyProcessingMode = "Streamed"
StreamedExtProcBodyProcessingMode ExtProcBodyProcessingMode = "Streamed"
// BufferedExtProcBodyProcessingMode will buffer the message body in memory and send the entire body at once. If the body exceeds the configured buffer limit, then the downstream system will receive an error.
BufferedExtProcBodyProcessingMode ExtProcBodyProcessingMode = "Buffered"
BufferedExtProcBodyProcessingMode ExtProcBodyProcessingMode = "Buffered"
// BufferedPartialExtBodyHeaderProcessingMode will buffer the message body in memory and send the entire body in one chunk. If the body exceeds the configured buffer limit, then the body contents up to the buffer limit will be sent.
BufferedPartialExtBodyHeaderProcessingMode ExtProcBodyProcessingMode = "BufferedPartial"
)
Expand Down

0 comments on commit 3788ba7

Please sign in to comment.