Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for reportEventsForUnWatched (0.48 sec)

  1. pilot/pkg/xds/ads.go

    		statusReporter.RegisterEvent(con.ID(), distributionType, nonce)
    	}
    }
    
    // reportEventsForUnWatched is to report events for unwatched types after push.
    // e.g. there is no rds if no route configured for gateway.
    // nolint
    func reportEventsForUnWatched(con *Connection, statusReporter DistributionStatusCache, nonce string) {
    	if statusReporter == nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    			return err
    		}
    	}
    
    	if pushRequest.Full {
    		// Report all events for unwatched resources. Watched resources will be reported in pushXds or on ack.
    		reportEventsForUnWatched(con, s.StatusReporter, pushRequest.Push.LedgerVersion)
    	}
    
    	proxiesConvergeDelay.Record(time.Since(pushRequest.Start).Seconds())
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top