Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support http1 full duplex per workload #14568

Merged
merged 10 commits into from
Jan 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix comment
  • Loading branch information
skonto committed Jan 15, 2024
commit fbe28615f6ce84a4ce70919c3b3a90cb40037c84
12 changes: 6 additions & 6 deletions pkg/queue/sharedmain/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,13 @@ type config struct {
QueueServingTLSPort string `split_words:"true" required:"true"`
UserPort string `split_words:"true" required:"true"`
RevisionTimeoutSeconds int `split_words:"true" required:"true"`
RevisionResponseStartTimeoutSeconds int `split_words:"true"` // optional
RevisionIdleTimeoutSeconds int `split_words:"true"` // optional
ServingReadinessProbe string `split_words:"true"` // optional
EnableProfiling bool `split_words:"true"` // optional
EnableHTTPFullDuplex bool `split_words:"true"` // optional
EnableHTTP2AutoDetection bool `envconfig:"ENABLE_HTTP2_AUTO_DETECTION"` // optional
RevisionResponseStartTimeoutSeconds int `split_words:"true"` // optional
RevisionIdleTimeoutSeconds int `split_words:"true"` // optional
ServingReadinessProbe string `split_words:"true"` // optional
EnableProfiling bool `split_words:"true"` // optional
// See https://github.com/knative/serving/issues/12387
EnableHTTPFullDuplex bool `split_words:"true"` // optional
EnableHTTP2AutoDetection bool `envconfig:"ENABLE_HTTP2_AUTO_DETECTION"` // optional

// Logging configuration
ServingLoggingConfig string `split_words:"true" required:"true"`
Expand Down