Skip to content

Commit 954ad73

Browse files
committed
CI fixes
1 parent dbbc543 commit 954ad73

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
@@ -774,7 +774,7 @@ void ADIOS2IOHandlerImpl::createDataset(
774774
filePos->gd = GroupOrDataset::DATASET;
775775
auto const varName = nameOfVariable(writable);
776776

777-
json::TracingJSON config = [&]() -> json::ParsedConfig {
777+
json::TracingJSON parsedConfig = [&]() -> json::ParsedConfig {
778778
if (!m_buffered_dataset_config.has_value())
779779
{
780780
// we are only interested in these values from the global config
@@ -812,11 +812,11 @@ void ADIOS2IOHandlerImpl::createDataset(
812812

813813
Shape arrayShape = Shape::GlobalArray;
814814
[&]() {
815-
if (!config.json().contains("adios2"))
815+
if (!parsedConfig.json().contains("adios2"))
816816
{
817817
return;
818818
};
819-
json::TracingJSON adios2Config(config["adios2"]);
819+
json::TracingJSON adios2Config(parsedConfig["adios2"]);
820820
auto datasetOperators = getOperators(adios2Config);
821821
if (datasetOperators.has_value())
822822
{
@@ -866,7 +866,7 @@ void ADIOS2IOHandlerImpl::createDataset(
866866
#endif
867867

868868
parameters.warnUnusedParameters(
869-
config,
869+
parsedConfig,
870870
"adios2",
871871
"Warning: parts of the backend configuration for ADIOS2 dataset '" +
872872
varName + "' remain unused:\n");

0 commit comments

Comments
 (0)