Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for idletimeout (0.16 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    				Tcp: &networking.ConnectionPoolSettings_TCPSettings{
    					IdleTimeout: &durationpb.Duration{
    						Seconds: 10,
    					},
    				},
    				Http: &networking.ConnectionPoolSettings_HTTPSettings{
    					IdleTimeout: nil,
    				},
    			},
    			expectedHTTPPOpt: &http.HttpProtocolOptions{
    				CommonHttpProtocolOptions: &core.HttpProtocolOptions{
    					IdleTimeout: &durationpb.Duration{
    						Seconds: 10,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_inbound.go

    	}
    	tcpProxy := &tcp.TcpProxy{
    		StatPrefix:       statPrefix,
    		ClusterSpecifier: &tcp.TcpProxy_Cluster{Cluster: fcc.clusterName},
    		IdleTimeout:      parseDuration(lb.node.Metadata.IdleTimeout),
    	}
    	tcpFilter := setAccessLogAndBuildTCPFilter(lb.push, lb.node, tcpProxy, istionetworking.ListenerClassSidecarInbound, fcc.policyService)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    				}
    			}
    
    			// Verify that the values were set correctly.
    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Not(BeNil()))
    			g.Expect(httpProtocolOptions.CommonHttpProtocolOptions.IdleTimeout).To(Equal(durationpb.New(time.Duration(15000000000))))
    		})
    	}
    }
    
    // clusterTest defines a structure containing all information needed to build a cluster for tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    // nolint
    // revive:disable-next-line
    var passthroughHttpProtocolOptions = protoconv.MessageToAny(&http.HttpProtocolOptions{
    	CommonHttpProtocolOptions: &core.HttpProtocolOptions{
    		IdleTimeout: durationpb.New(5 * time.Minute),
    	},
    	UpstreamProtocolOptions: &http.HttpProtocolOptions_UseDownstreamProtocolConfig{
    		UseDownstreamProtocolConfig: &http.HttpProtocolOptions_UseDownstreamHttpConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    		}
    		// Otherwise, this is meant for the standard HTTP server
    		s.httpMux.ServeHTTP(w, r)
    	}), h2s)
    	s.httpServer = &http.Server{
    		Addr:        args.ServerOptions.HTTPAddr,
    		Handler:     s.httpMux,
    		IdleTimeout: 90 * time.Second, // matches http.DefaultTransport keep-alive timeout
    		ReadTimeout: 30 * time.Second,
    	}
    	if multiplexGRPC {
    		// To allow the gRPC handler to make per-request decision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top