Skip to content

Commit

Permalink
Merge pull request #37 from harness/FFM-4358
Browse files Browse the repository at this point in the history
FFM-4358 - Change IN operator clause logic
  • Loading branch information
stephenmcconkey committed Aug 23, 2022
2 parents 516a686 + 3f1ceaa commit 984b035
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion client/api/Evaluator.cs
Expand Up @@ -280,7 +280,7 @@ private bool EvaluateClause(Clause clause, dto.Target target)
case "attrStr":
return attrStr.Equals(value);
case "in":
return value.Contains(attrStr);
return clause.Values.Contains(attrStr);
default:
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion examples/getting_started/getting_started.csproj
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="ff-netF48-server-sdk" Version="1.1.2" />
<PackageReference Include="ff-netF48-server-sdk" Version="1.1.3" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions ff-netF48-server-sdk.csproj
Expand Up @@ -4,9 +4,9 @@
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<RootNamespace>io.harness.cfsdk</RootNamespace>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Version>1.1.2</Version>
<Version>1.1.3</Version>
<PackOnBuild>true</PackOnBuild>
<PackageVersion>1.1.2</PackageVersion>
<PackageVersion>1.1.3</PackageVersion>
<Authors>andrija.milovanovic@harness.io,milos.vasic@harness.io</Authors>
<Copyright>Copyright © 2022 </Copyright>
<PackageIconUrl>https://harness.io/icon-ff.svg</PackageIconUrl>
Expand Down

0 comments on commit 984b035

Please sign in to comment.