Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for onTimeout (0.26 sec)

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

    	// For inbound, configure with notimeout.
    	out.GetRoute().Timeout = Notimeout
    	out.GetRoute().MaxStreamDuration = &route.RouteAction_MaxStreamDuration{
    		MaxStreamDuration: Notimeout,
    		// 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.
    		GrpcTimeoutHeaderMax: Notimeout,
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. 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 (0)
  3. pilot/pkg/networking/core/networkfilter.go

    		StatPrefix:      statPrefix, // redis stats are prefixed with redis.<statPrefix> by Envoy
    		Settings: &redis.RedisProxy_ConnPoolSettings{
    			OpTimeout: durationpb.New(redisOpTimeout),
    		},
    		PrefixRoutes: &redis.RedisProxy_PrefixRoutes{
    			CatchAllRoute: &redis.RedisProxy_PrefixRoutes_Route{
    				Cluster: clusterName,
    			},
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    		GenerateRequestId:          ph.GenerateRequestID,
    		UseRemoteAddress:           proto.BoolFalse,
    	}
    
    	// Protocol settings
    	h.StreamIdleTimeout = istio_route.Notimeout
    	h.UpgradeConfigs = []*hcm.HttpConnectionManager_UpgradeConfig{{
    		UpgradeType: ConnectUpgradeType,
    	}}
    	h.Http2ProtocolOptions = &core.Http2ProtocolOptions{
    		AllowConnect: true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    							Name: wellknown.RedisProxy,
    							ConfigType: &listener.Filter_TypedConfig{
    								TypedConfig: protoconv.MessageToAny(&redis.RedisProxy{
    									Settings: &redis.RedisProxy_ConnPoolSettings{
    										OpTimeout: durationpb.New(time.Second * 5),
    									},
    								}),
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			Name: "network-filter-to-be-replaced-not-found",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top