Skip to content

Commit

Permalink
ui: help: more troubleshooting
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedilger committed Dec 17, 2023
1 parent 6970e86 commit e49602b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions gossip-bin/src/ui/help/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,18 @@ pub(super) fn update(app: &mut GossipUi, ctx: &Context, _frame: &mut eframe::Fra
});
});

ui.add_space(10.0);
ui.heading("Gossip freezes or runs slowly at startup:");
ui.indent("freezeatstart", |ui| {
ui.horizontal_wrapped(|ui| {
ui.label("On some combinations of storage devices and filesystems, gossip's LMDB storage may take a long time to get started. Try moving your gossip directory to a different filesyste and/or a different storage device. You can set the GOSSIP_DIR environment variable to point to your gossip directory." );
});
ui.horizontal_wrapped(|ui| {
ui.label(format!("Your gossip storage directory is currently {}",
app.about.storage_path));
});
});

ui.add_space(10.0);
ui.heading("more will be added in the future.");

Expand Down

0 comments on commit e49602b

Please sign in to comment.