Create one client thread for each one that was requested (assumes local client is disabled)

This commit is contained in:
Russell Sears 2021-02-08 21:20:37 +00:00
parent ad3de5c9e0
commit 9e9bc4abe5
1 changed files with 1 additions and 1 deletions

View File

@ -1068,7 +1068,7 @@ void MultiVersionApi::addExternalLibraryDirectory(std::string path) {
std::vector<std::string> MultiVersionApi::copyExternalLibraryPerThread(std::string path) {
// Copy library for each thread configured per version
std::vector<std::string> paths;
for (int ii = 1; ii < CLIENT_KNOBS->MULTI_VERSION_CLIENT_THREADS_PER_VERSION; ++ii) {
for (int ii = 0; ii < CLIENT_KNOBS->MULTI_VERSION_CLIENT_THREADS_PER_VERSION; ++ii) {
std::string filename = basename(path);
char tempName[PATH_MAX + 12];