Skip to content

Commit e8a61f0

Browse files
committed
CI fixes
1 parent 379ca6b commit e8a61f0

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/IO/ADIOS/ADIOS2IOHandler.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -807,7 +807,7 @@ void ADIOS2IOHandlerImpl::createDataset(
807807
filePos->gd = GroupOrDataset::DATASET;
808808
auto const varName = nameOfVariable(writable);
809809

810-
json::TracingJSON config = [&]() -> json::ParsedConfig {
810+
json::TracingJSON parsedConfig = [&]() -> json::ParsedConfig {
811811
if (!m_buffered_dataset_config.has_value())
812812
{
813813
// we are only interested in these values from the global config
@@ -845,11 +845,11 @@ void ADIOS2IOHandlerImpl::createDataset(
845845

846846
Shape arrayShape = Shape::GlobalArray;
847847
[&]() {
848-
if (!config.json().contains("adios2"))
848+
if (!parsedConfig.json().contains("adios2"))
849849
{
850850
return;
851851
};
852-
json::TracingJSON adios2Config(config["adios2"]);
852+
json::TracingJSON adios2Config(parsedConfig["adios2"]);
853853
auto datasetOperators = getOperators(adios2Config);
854854
if (datasetOperators.has_value())
855855
{
@@ -899,7 +899,7 @@ void ADIOS2IOHandlerImpl::createDataset(
899899
#endif
900900

901901
parameters.warnUnusedParameters(
902-
config,
902+
parsedConfig,
903903
"adios2",
904904
"Warning: parts of the backend configuration for ADIOS2 dataset '" +
905905
varName + "' remain unused:\n");

0 commit comments

Comments
 (0)