Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for failoverPriorityLabels (0.2 sec)

  1. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    			if tt.dr != nil {
    				b.destinationRule = model.ConvertConsolidatedDestRule(tt.dr)
    			}
    			b.populateFailoverPriorityLabels()
    			if !reflect.DeepEqual(b.failoverPriorityLabels, tt.expectedLabels) {
    				t.Fatalf("expected priorityLabels %v but got %v", tt.expectedLabels, b.failoverPriorityLabels)
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/endpoint_builder.go

    		h.WriteString(strconv.FormatBool(bool(b.proxy.Metadata.DisableHBONESend)))
    		h.Write(Separator)
    	}
    	h.WriteString(util.LocalityToString(b.locality))
    	h.Write(Separator)
    	if len(b.failoverPriorityLabels) > 0 {
    		h.Write(b.failoverPriorityLabels)
    		h.Write(Separator)
    	}
    	if b.service.Attributes.NodeLocal {
    		h.WriteString(b.proxy.GetNodeName())
    		h.Write(Separator)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top