Skip to content

Commit

Permalink
Ignore 'name' setting in comparisons.
Browse files Browse the repository at this point in the history
  • Loading branch information
egorpugin committed Apr 20, 2024
1 parent 17c149e commit 0068dba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sw/client/common/sw_context.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -775,12 +775,12 @@ std::vector<sw::TargetSettings> SwClientContext::createSettings()
s["name"] = options.config_name[i];
s["name"].serializable(false);
s["name"].useInHash(false);
s["name"].ignoreInComparison(false);
s["name"].ignoreInComparison(true);

s["name_without_config"] = "true";
s["name_without_config"].serializable(false);
s["name_without_config"].useInHash(false);
s["name_without_config"].ignoreInComparison(false);
s["name_without_config"].ignoreInComparison(true);
}
LOG_DEBUG(logger, "WARNING: Setting config names may result in wrong config-name pair assignment, "
"because of unspecified config creation order.");
Expand Down

0 comments on commit 0068dba

Please sign in to comment.