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

Apply fixes from StyleCI #1137

Merged
merged 1 commit into from
Oct 12, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Blacklight/libraries/Forking.php
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ private function backfill()
echo $exception->getMessage();
})->catch(function (SerializableException $serializableException) {
//we do nothing here just catch the error and move on
});;
});
$maxWork--;
}
$pool->wait();
Expand Down Expand Up @@ -406,7 +406,7 @@ private function safeBackfill()
echo $exception->getMessage();
})->catch(function (SerializableException $serializableException) {
//we do nothing here just catch the error and move on
});;
});
}
$pool->wait();
}
Expand Down Expand Up @@ -441,7 +441,7 @@ private function binaries()
echo $exception->getMessage();
})->catch(function (SerializableException $serializableException) {
//we do nothing here just catch the error and move on
});;
});
$maxWork--;
}

Expand Down Expand Up @@ -511,7 +511,7 @@ private function safeBinaries()
echo $exception->getMessage();
})->catch(function (SerializableException $serializableException) {
//we do nothing here just catch the error and move on
});;
});
}

$pool->wait();
Expand Down Expand Up @@ -580,7 +580,7 @@ private function fixRelNames()
echo $exception->getMessage();
})->catch(function (SerializableException $serializableException) {
//we do nothing here just catch the error and move on
});;
});
$maxWork--;
}
$pool->wait();
Expand Down Expand Up @@ -928,7 +928,7 @@ private function updatePerGroup()
echo $exception->getMessage();
})->catch(function (SerializableException $serializableException) {
//we do nothing here just catch the error and move on
});;
});
}

$pool->wait();
Expand Down