Skip to content

Commit

Permalink
fixup! Update in-process resolver to support flag metadata #305
Browse files Browse the repository at this point in the history
Signed-off-by: christian.lutnik <[email protected]>
  • Loading branch information
chrfwow committed Jan 20, 2025
1 parent 6b5210d commit 4709b8f
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ internal FlagSyncData Parse(string flagConfigurations)
if (value is long longValue)
{
data.Metadata[key] = (int)longValue;
continue;
}

VerifyMetadataValue(key, value);
Expand All @@ -117,7 +116,6 @@ internal FlagSyncData Parse(string flagConfigurations)
if (value is long longValue)
{
flagConfig.Value.Metadata[key] = (int)longValue;
continue;
}

VerifyMetadataValue(key, value);
Expand Down

0 comments on commit 4709b8f

Please sign in to comment.