Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gossip/src/cluster_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3099,7 +3099,7 @@ mod tests {
},
};
const DEFAULT_NUM_QUIC_ENDPOINTS: NonZeroUsize =
unsafe { NonZeroUsize::new_unchecked(DEFAULT_QUIC_ENDPOINTS) };
NonZeroUsize::new(DEFAULT_QUIC_ENDPOINTS).unwrap();

impl ClusterInfo {
// Wrapper for ClusterInfo.new_pull_requests replicating old return
Expand Down
Loading