fix: Remove parallelism of some functions as they kept exceeding the number of threads available
This commit is contained in:
parent
8fb20a1d60
commit
224c897b7d
1 changed files with 4 additions and 4 deletions
|
@ -98,7 +98,7 @@ loop() {
|
||||||
error_found=1
|
error_found=1
|
||||||
else
|
else
|
||||||
#If the avatar is not valid, set it as blank in the database
|
#If the avatar is not valid, set it as blank in the database
|
||||||
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\"" &
|
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\""
|
||||||
rm -rf "${k_photo}" "${k_thumb}" "${k_micro}" &
|
rm -rf "${k_photo}" "${k_thumb}" "${k_micro}" &
|
||||||
result_string=$(printf "%s (blanked)" "${result_string}")
|
result_string=$(printf "%s (blanked)" "${result_string}")
|
||||||
error_found=1
|
error_found=1
|
||||||
|
@ -120,7 +120,7 @@ loop() {
|
||||||
grep -q "content-type: image") ]]; then
|
grep -q "content-type: image") ]]; then
|
||||||
result_string=$(printf "%s F%dms" "${result_string}" $(($(($(date +%s%N) / 1000000)) - t)))
|
result_string=$(printf "%s F%dms" "${result_string}" $(($(($(date +%s%N) / 1000000)) - t)))
|
||||||
result_string=$(printf "${result_string} Fetch error: %s" "${photo}")
|
result_string=$(printf "${result_string} Fetch error: %s" "${photo}")
|
||||||
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\"" &
|
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\""
|
||||||
result_string=$(printf "%s (blanked)" "${result_string}")
|
result_string=$(printf "%s (blanked)" "${result_string}")
|
||||||
nl=1
|
nl=1
|
||||||
error_found=1
|
error_found=1
|
||||||
|
@ -150,7 +150,7 @@ loop() {
|
||||||
error_found=1
|
error_found=1
|
||||||
else
|
else
|
||||||
#If the avatar is not valid, set it as blank in the database
|
#If the avatar is not valid, set it as blank in the database
|
||||||
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\"" &
|
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\""
|
||||||
rm -rf "${k_photo}" "${k_thumb}" "{k_micro}" &
|
rm -rf "${k_photo}" "${k_thumb}" "{k_micro}" &
|
||||||
result_string=$(printf "%s (blanked)" "${result_string}")
|
result_string=$(printf "%s (blanked)" "${result_string}")
|
||||||
error_found=1
|
error_found=1
|
||||||
|
@ -158,7 +158,7 @@ loop() {
|
||||||
else
|
else
|
||||||
result_string=$(printf "%s No remote" "${result_string}")
|
result_string=$(printf "%s No remote" "${result_string}")
|
||||||
#If the avatar is not valid, set it as blank in the database
|
#If the avatar is not valid, set it as blank in the database
|
||||||
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\"" &
|
mariadb "${db}" -N -B -q -e "update contact set avatar= \"\", photo = \"\", thumb = \"\", micro = \"\" where id = \"${id}\""
|
||||||
result_string=$(printf "%s (blanked)" "${result_string}")
|
result_string=$(printf "%s (blanked)" "${result_string}")
|
||||||
#If no remote avatar is found, we would blank the photo/thumb/micro and let the avatar cache process fix them later, but it's empty already here
|
#If no remote avatar is found, we would blank the photo/thumb/micro and let the avatar cache process fix them later, but it's empty already here
|
||||||
error_found=1
|
error_found=1
|
||||||
|
|
Loading…
Add table
Reference in a new issue