Skip to content

Commit

Permalink
Increase wait before terminating QThreads. [closes #251] [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
lohedges committed Oct 29, 2024
1 parent 926f082 commit a2370a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion corelib/src/libs/SireBase/pagecache.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ void CacheData::cleanUpOnExit()
{
if (QThread::currentThread() != c.get())
{
if (not c->wait(50))
if (not c->wait(100))
{
// kill it
c->terminate();
Expand Down

0 comments on commit a2370a4

Please sign in to comment.