Skip to content

Commit

Permalink
Exclude mapping in case the host name is Dynamo (DynamoDS#15641)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeusongit committed Nov 12, 2024
1 parent 88a52e3 commit 38d8251
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/DynamoPackages/PackageManagerClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ private void LoadCompatibilityMap()
foreach (var property in host.Properties())
{
string hostName = property.Name;
if (hostName.ToLower().Equals("dynamo")) continue;
var versionMapping = property.Value.ToObject<Dictionary<string, string>>();

if (!compatibilityMap.ContainsKey(hostName))
Expand Down

0 comments on commit 38d8251

Please sign in to comment.