MohammadMahdi Javid
MohammadMahdi Javid
Hi, Thanks for your time and the great insight provided https://github.com/openwpm/OpenWPM/blob/f72e7ca1fc3edcc60b26c780c264176e1e384779/openwpm/browser_manager.py#L221-L230 I see here that tempdir get's removed, although the variable name looks very unreadable :) and tempdir is the...
since self.status_queue is empty, so again it's going to say ```python if (time.time() - self._last_status_received) > STATUS_TIMEOUT: ``` and is going to use previous self._last_status_received for the new one and...
proposed fix: ```python if self.status_queue.empty() : self.status_queue.put(0) ``` or maybe i'm handling the exception not correctly