Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for DefaultCallRetryOptions (0.2 sec)

  1. pkg/test/framework/components/echo/flags.go

    			"Only applies if the call count is zero (default) and a target was specified for the call")
    }
    
    // DefaultCallRetryOptions returns the default call retry options as specified in command-line flags.
    func DefaultCallRetryOptions() []retry.Option {
    	return []retry.Option{retry.Timeout(callTimeout), retry.BackoffDelay(callDelay), retry.Converge(callConverge)}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 13 17:44:00 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/mirror_test.go

    										expected := c.expectedDestination
    										if expected == nil {
    											expected = apps.C
    										}
    
    										return verifyTrafficMirror(apps.B, expected, c, testID)
    									}, echo.DefaultCallRetryOptions()...)
    								})
    							}
    						})
    					}
    				})
    			}
    		})
    }
    
    func sendTrafficMirror(from echo.Instance, to echo.Target, proto protocol.Instance, testID string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/calloptions.go

    	if o.Retry.NoRetry {
    		// User specified no-retry, nothing to do.
    		return
    	}
    
    	// NOTE: last option wins, so order in the list is important!
    
    	// Start by getting the defaults.
    	retryOpts := DefaultCallRetryOptions()
    
    	// Don't use converge unless we need it. When sending large batches of requests (for example,
    	// when we attempt to reach all clusters), converging will result in sending at least
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top