linux: HACK disable watcher and crash uploader temporarily
This commit is contained in:
parent
d03f3b9f18
commit
8d339ede1c
2 changed files with 4 additions and 0 deletions
|
@ -301,6 +301,8 @@ impl Fs for RealFs {
|
||||||
.configure(Config::default().with_poll_interval(latency))
|
.configure(Config::default().with_poll_interval(latency))
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
//TODO: unblock this
|
||||||
|
#[cfg(not(target_os = "linux"))]
|
||||||
watcher
|
watcher
|
||||||
.watch(path, notify::RecursiveMode::Recursive)
|
.watch(path, notify::RecursiveMode::Recursive)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
|
@ -257,6 +257,8 @@ fn main() {
|
||||||
initialize_workspace(app_state.clone(), cx);
|
initialize_workspace(app_state.clone(), cx);
|
||||||
|
|
||||||
if stdout_is_a_pty() {
|
if stdout_is_a_pty() {
|
||||||
|
//TODO: unblock this
|
||||||
|
#[cfg(not(target_os = "linux"))]
|
||||||
upload_panics_and_crashes(http.clone(), cx);
|
upload_panics_and_crashes(http.clone(), cx);
|
||||||
cx.activate(true);
|
cx.activate(true);
|
||||||
let urls = collect_url_args();
|
let urls = collect_url_args();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue