Merge pull request #69 from NileshGhodekar/master

Fixed - GenerateUniqueValue Activity is now correctly backward compatible.
This commit is contained in:
Nilesh Ghodekar 2019-01-12 19:53:58 +00:00 коммит произвёл GitHub
Родитель 74b6525952 bf55958b0a
Коммит c0282dcd2c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
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
{