diff options
author | Zach Prezkuta <fermion@gmx.com> | 2012-07-05 19:01:13 -0600 |
---|---|---|
committer | Zach Prezkuta <fermion@gmx.com> | 2012-07-05 19:01:13 -0600 |
commit | 5dcce1ed9378c4a1ef2f5272e34baf8fee5cc8be (patch) | |
tree | eff78b5232480b27b6b614fce3696132265c2279 /include/diaspora.php | |
parent | 2edfc3b53902d1f666d239fbcb88492c57d81ca7 (diff) | |
download | volse-hubzilla-5dcce1ed9378c4a1ef2f5272e34baf8fee5cc8be.tar.gz volse-hubzilla-5dcce1ed9378c4a1ef2f5272e34baf8fee5cc8be.tar.bz2 volse-hubzilla-5dcce1ed9378c4a1ef2f5272e34baf8fee5cc8be.zip |
add some timeouts to prevent deadlock
Diffstat (limited to 'include/diaspora.php')
-rwxr-xr-x | include/diaspora.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index 29846eedf..35cd66059 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -119,6 +119,9 @@ function find_diaspora_person_by_handle($handle) { $update = false; $got_lock = false; + $endlessloop = 0; + $maxloops = 10; + do { $r = q("select * from fcontact where network = '%s' and addr = '%s' limit 1", dbesc(NETWORK_DIASPORA), @@ -153,7 +156,12 @@ function find_diaspora_person_by_handle($handle) { // Lock the function to prevent race conditions if multiple items // come in at the same time from a person who doesn't exist in // fcontact - $got_lock = lock_function('find_diaspora_person_by_handle', false); + // + // Don't loop forever. On the last loop, try to create the contact + // whether the function is locked or not. Maybe the locking thread + // has died or something. At any rate, a duplicate in 'fcontact' + // is a much smaller problem than a deadlocked thread + $got_lock = (($endlessloop + 1) < $maxloops ? lock_function('find_diaspora_person_by_handle', false) : true ); if($got_lock) { logger('find_diaspora_person_by_handle: create or refresh', LOGGER_DEBUG); @@ -175,7 +183,7 @@ function find_diaspora_person_by_handle($handle) { block_on_function_lock('find_diaspora_person_by_handle'); } } - } while((! $person) && (! $got_lock)); + } while((! $person) && (! $got_lock) && (++$endlessloop < $maxloops)); // We need to try again if the person wasn't in 'fcontact' but the function was locked. // The fact that the function was locked may mean that another process was creating the // person's record. It could also mean another process was creating or updating an unrelated |