Skip to content
Open
Show file tree
Hide file tree
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 lore-revision/src/nametable.rs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ impl NameTable {
/// (entries are never removed or relocated), and all callers immediately
/// copy the result to an owned `String` before the borrow expires.
pub fn load(&self, hash: u64) -> &str {
// TODO(mjansson): Garbage collect nametable by iterating entire merkle tree and rebuiling
// TODO(mjansson): Garbage collect nametable by iterating entire merkle tree and rebuilding
// nametable, cleaning out stale entries
let data = self.data.read();
let entry = data.entry_buffer.as_type_slice::<NameTableEntry>();
Expand Down
2 changes: 1 addition & 1 deletion lore-server/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ pub struct QuicSettings {
pub port: i32,
pub transport_bits_per_second: Option<usize>,
pub transport_rtt: Option<usize>,
/// Keep below a threshold for whatever Load Balancer sits infront of the server
/// Keep below a threshold for whatever Load Balancer sits in front of the server
/// or is expecting responses. If request handlers exceed this reasonable threshold
/// then assume something has gone wrong and return a timeout response so we can get metrics
/// and clients don't hang forever
Expand Down