Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for max_stream_duration (0.48 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump.json

                                        "cluster": "inbound-vip|8000|http|httpbin.default.svc.cluster.local",
                                        "timeout": "0s",
                                        "max_stream_duration": {
                                          "max_stream_duration": "0s",
                                          "grpc_timeout_header_max": "0s"
                                        }
                                      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/compare/testdata/configdump.json

                                        "cluster": "inbound-vip|9080|http|details.default.svc.cluster.local",
                                        "timeout": "0s",
                                        "max_stream_duration": {
                                          "max_stream_duration": "0s",
                                          "grpc_timeout_header_max": "0s"
                                        }
                                      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                        "cluster": "inbound-vip|9080|http|details.default.svc.cluster.local",
                                        "timeout": "0s",
                                        "max_stream_duration": {
                                          "max_stream_duration": "0s",
                                          "grpc_timeout_header_max": "0s"
                                        }
                                      },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/route/route.go

    		action.MaxStreamDuration = &route.RouteAction_MaxStreamDuration{
    			MaxStreamDuration: action.Timeout,
    		}
    	} else {
    		// If not configured at all, the grpc-timeout header is not used and
    		// gRPC requests time out like any other requests using timeout or its default.
    		// Use deprecated value for now as the replacement MaxStreamDuration has some regressions.
    		// nolint: staticcheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_waypoint.go

    	action.Timeout = istio_route.Notimeout
    	if in.Timeout != nil {
    		action.Timeout = in.Timeout
    	}
    	// Use deprecated value for now as the replacement MaxStreamDuration has some regressions.
    	// nolint: staticcheck
    	action.MaxGrpcTimeout = action.Timeout
    
    	out.Action = &route.Route_Route{Route: action}
    
    	if in.Rewrite != nil {
    		action.PrefixRewrite = in.Rewrite.GetUri()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/httproute.go

    			ClusterSpecifier: &route.RouteAction_Cluster{Cluster: egressCluster},
    			// Disable timeout instead of assuming some defaults.
    			Timeout: notimeout,
    			// Use deprecated value for now as the replacement MaxStreamDuration has some regressions.
    			// nolint: staticcheck
    			MaxGrpcTimeout: notimeout,
    		}
    
    		return &route.VirtualHost{
    			Name:    util.Passthrough,
    			Domains: []string{"*"},
    			Routes: []*route.Route{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (1)
Back to top