Fixed - GenerateUniqueValue Activity is now correctly backward compatible.

This commit is contained in:
NileshGhodekar 2019-01-12 19:49:49 +00:00
Родитель 37037b3b68
Коммит bf55958b0a
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -22,7 +22,7 @@ namespace MicrosoftServices.IdentityManagement.WorkflowActivityLibrary
/// 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:
@ -31,6 +31,6 @@ namespace MicrosoftServices.IdentityManagement.WorkflowActivityLibrary
/// 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";
}
}

Просмотреть файл

@ -559,6 +559,10 @@ namespace MicrosoftServices.IdentityManagement.WorkflowActivityLibrary.Activitie
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
{