Skip to content

Commit

Permalink
Merge pull request #69 from NileshGhodekar/master
Browse files Browse the repository at this point in the history
Fixed - GenerateUniqueValue Activity is now correctly backward compatible.
  • Loading branch information
NileshGhodekar authored Jan 12, 2019
2 parents 74b6525 + bf55958 commit c0282dc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal static class VersionInfo
/// Build Number (MMDD)
/// Revision (if any on the same day)
/// </summary>
internal const string Version = "2.19.0111.0";
internal const string Version = "2.19.0112.0";

/// <summary>
/// File Version information for the assembly consists of the following four values:
Expand All @@ -31,6 +31,6 @@ internal static class VersionInfo
/// Build Number (MMDD)
/// Revision (if any on the same day)
/// </summary>
internal const string FileVersion = "2.19.0111.0";
internal const string FileVersion = "2.19.0112.0";
}
}
4 changes: 4 additions & 0 deletions src/WorkflowActivityLibrary/Activities/GenerateUniqueValue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -559,6 +559,10 @@ private void SetAttributesToReadForConflictResources()
this.FindConflict.Attributes = attributes.ToArray();
Logger.Instance.WriteVerbose(EventIdentifier.GenerateUniqueValueSetAttributesToReadForConflictResources, "Filter: '{0}'. Attributes: '{1}'.", this.ConflictFilter, string.Join(";", attributes.ToArray()));
}
else
{
this.optimizeUniquenessKey = false; // Turn the config flag off as the conflict filter does not use starts-with function.
}
}
finally
{
Expand Down

0 comments on commit c0282dc

Please sign in to comment.