diff options
author | friendica <info@friendica.com> | 2012-07-05 18:05:32 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-05 18:05:32 -0700 |
commit | 09959b1b1c828b5b43130f06c9599218fd86b68a (patch) | |
tree | 1f6bdcd3dd8512d9081cde67548881b492d5eeaf /include/diaspora.php | |
parent | d7920c4c25e99e61cca10cd1c1ae73c5c3cf0cb5 (diff) | |
parent | 5dcce1ed9378c4a1ef2f5272e34baf8fee5cc8be (diff) | |
download | volse-hubzilla-09959b1b1c828b5b43130f06c9599218fd86b68a.tar.gz volse-hubzilla-09959b1b1c828b5b43130f06c9599218fd86b68a.tar.bz2 volse-hubzilla-09959b1b1c828b5b43130f06c9599218fd86b68a.zip |
Merge pull request #375 from fermionic/diaspora-prevent-fcontact-race-conditions
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 |