Correct VOL connector env string parsing issue (#2350)

* Correct concurrency bugs when running tests, along with a bugfix & small
warning cleanup.

* Committing clang-format changes

* Allow spaces (and tabs) in VOL connector info string from environment variable.

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: AWS ParallelCluster user <ec2-user@ip-10-0-0-65.us-east-2.compute.internal>
Co-authored-by: Koziol <qkoziol@88665a374c70.ant.amazon.com>
This commit is contained in:
Quincey Koziol 2023-01-04 13:04:07 -06:00 committed by GitHub
parent 83f81a6422
commit c2e3c732f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -425,7 +425,7 @@ H5VL__set_def_conn(void)
} /* end else */
/* Was there any connector info specified in the environment variable? */
if (NULL != (tok = HDstrtok_r(NULL, " \t\n\r", &lasts)))
if (NULL != (tok = HDstrtok_r(NULL, "\n\r", &lasts)))
if (H5VL__connector_str_to_info(tok, connector_id, &vol_info) < 0)
HGOTO_ERROR(H5E_VOL, H5E_CANTDECODE, FAIL, "can't deserialize connector info")