We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0be8293 commit cc8193aCopy full SHA for cc8193a
src/wasm/src/sentry_gauge.rs
@@ -21,14 +21,14 @@ const MANIFEST_FILE_PATH: &str = ".\\manifest.json";
21
/// The path to the sentry persistent state file
22
const SENTRY_FILE: &str = "\\work/ng_sentry.json";
23
24
-// The amount of seconds between forced Sentry flushes
+/// The amount of seconds between forced Sentry flushes
25
const SENTRY_FLUSH_INTERVAL_SECONDS: u64 = 60;
26
27
-// The global Sentry state instance
+/// The global Sentry state instance
28
static SENTRY_STATE: Lazy<Mutex<SentryPersistentState>> =
29
Lazy::new(|| Mutex::new(SentryPersistentState::load()));
30
31
-// A pending sentry report
+/// A pending sentry report
32
#[derive(Deserialize, Serialize)]
33
struct PendingSentryReport {
34
url: String,
0 commit comments