We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6da725b commit b5b77cbCopy full SHA for b5b77cb
src/SeqCli/Templates/Import/TemplateSetImporter.cs
@@ -77,7 +77,7 @@ static class TemplateSetImporter
77
var resourceGroup = await connection.Client.GetAsync<ResourceGroup>(apiRoot, link.Key);
78
79
// ExpressionIndexes with mapped ids or identical expressions are assumed to be equivalent.
80
- var immutableTarget = template.ResourceGroup == "ExpressionIndexes";
+ var immutableTarget = template.ResourceGroup.Equals("ExpressionIndexes", StringComparison.OrdinalIgnoreCase);
81
82
if (state.TryGetCreatedEntityId(template.Name, out var existingId) &&
83
await CheckEntityExistenceAsync(connection, resourceGroup, existingId))
0 commit comments