Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KeepaliveParams (0.19 sec)

  1. pilot/pkg/grpc/grpc.go

    		// keep alive setting, it will prematurely get a GOAWAY sent.
    		grpc.KeepaliveEnforcementPolicy(keepalive.EnforcementPolicy{
    			MinTime: options.Time / 2,
    		}),
    		grpc.KeepaliveParams(keepalive.ServerParameters{
    			Time:                  options.Time,
    			Timeout:               options.Timeout,
    			MaxConnectionAge:      options.MaxServerConnectionAge,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 04:27:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pkg/test/echo/server/endpoint/grpc.go

    	if err != nil {
    		return err
    	}
    	// Store the actual listening port back to the argument.
    	s.Port.Port = p
    
    	opts := []grpc.ServerOption{
    		grpc.KeepaliveParams(keepalive.ServerParameters{
    			MaxConnectionIdle: idleTimeout,
    		}),
    	}
    	if s.Port.TLS {
    		epLog.Infof("Listening GRPC (over TLS) on %v", p)
    		// Create the TLS credentials
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 17:30:37 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top