Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memento count updates prevent a second running of WAIL on Linux #404

Open
machawk1 opened this issue Mar 21, 2019 · 4 comments
Open

Memento count updates prevent a second running of WAIL on Linux #404

machawk1 opened this issue Mar 21, 2019 · 4 comments

Comments

@machawk1
Copy link
Owner

Following the Docker instructions in the README then, while logged in to the container and CTRL-C'ing the WAIL process, invoke it a second time. The result starts WAIL but then halts with:

Pango:ERROR:../pango/pango-layout.c:3871:pango_layout_check_lines: assertion failed: (!layout->log_attrs)

This page leads me to believe that this has to do with the UI being updated after querying MemGator in a separate thread, which is discouraged.

I can only replicate this on Linux.

@machawk1
Copy link
Owner Author

If I wait about 60 seconds before re-invoking ./WAIL in the container, this error does not occur. I am assuming here that the thread calling MemGator times out, expires, etc. allowing WAIL to be run like normal again.

@machawk1
Copy link
Owner Author

Something in setMementoCount() is the culprit here, likely:

self.mementoStatus.SetLabel(memCountMsg)
self.mementoStatusPublicArchives.SetLabel("Public archives: ")
self.Layout()

...which updates the UI. When this function is called from a secondary thread and persists after killing WAIL, it may be the source of the subsequent crash attributed to Pango.

Immediately returning from setMementoCount() prevents the crash from occurring, hence the attribution of the problem.

@machawk1
Copy link
Owner Author

thread.start_new_thread(self.fetchMementos, ()) in WAILGUIFrame_Basic.__init__() is the thread invocation that is problematic.

@machawk1
Copy link
Owner Author

machawk1 commented Mar 27, 2019

Conventionally exiting the application (e.g., through the menu) instead of CTRL-C should not exhibit this problem. The TabController.quit() function handles stopping the indexing thread but not any running MemGator threads. We do not catch the CTRL-C (SIGINT) signal but could with signal.signal(signal.SIGINT, self.gracefullyExit) then stopping all threads (like in TabController.quit()).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant