Skip to content

Commit

Permalink
Merge pull request #41 from hpc-io/fix-async-vol-check
Browse files Browse the repository at this point in the history
Fix ASYNC VOL check
  • Loading branch information
jeanbez authored Feb 8, 2022
2 parents e4fc066 + 8a6e820 commit 866af67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commons/h5bench_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ has_vol_connector()
#if H5_VERSION_GE(1, 13, 0)
char *connector = getenv("HDF5_VOL_CONNECTOR");

if (connector != NULL) {
if (connector != NULL && strstr(connector, "async")) {
return 1;
}
#endif
Expand Down

0 comments on commit 866af67

Please sign in to comment.