Kourosh
Kourosh
I think you should check your device name with `iwconfig` command. For example, in my case, it's wlp0s20u2.
Did you try running the following command with root permission? `sudo iw dev wlan0 set type monitor`
Ok, so what was the output? if it's the same, do you enter the same commands as below? `sudo ifconfig wlan0 down` `sudo iw dev wlan0 set type monitor` `sudo...
It seems like it's possible to keep a connection open using `DummyBehaviour::with_keep_alive` but I don't know if it's good enough.
Hello @PSeitz I've run into a similar problem. here is a code snippet to reproduce the behavior: ```rust use tantivy::collector::TopDocs; use tantivy::query::QueryParser; use tantivy::schema::*; use tantivy::{doc, Index, ReloadPolicy}; fn main()...