Skip to content

Commit aba0e24

Browse files
committed
CI fixes
1 parent 1216604 commit aba0e24

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/IO/ADIOS/ADIOS2IOHandler.cpp

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

780-
json::TracingJSON config = [&]() -> json::ParsedConfig {
780+
json::TracingJSON parsedConfig = [&]() -> json::ParsedConfig {
781781
if (!m_buffered_dataset_config.has_value())
782782
{
783783
// we are only interested in these values from the global config
@@ -815,11 +815,11 @@ void ADIOS2IOHandlerImpl::createDataset(
815815

816816
Shape arrayShape = Shape::GlobalArray;
817817
[&]() {
818-
if (!config.json().contains("adios2"))
818+
if (!parsedConfig.json().contains("adios2"))
819819
{
820820
return;
821821
};
822-
json::TracingJSON adios2Config(config["adios2"]);
822+
json::TracingJSON adios2Config(parsedConfig["adios2"]);
823823
auto datasetOperators = getOperators(adios2Config);
824824
if (datasetOperators.has_value())
825825
{
@@ -869,7 +869,7 @@ void ADIOS2IOHandlerImpl::createDataset(
869869
#endif
870870

871871
parameters.warnUnusedParameters(
872-
config,
872+
parsedConfig,
873873
"adios2",
874874
"Warning: parts of the backend configuration for ADIOS2 dataset '" +
875875
varName + "' remain unused:\n");

0 commit comments

Comments
 (0)