Added status code for TDE result (#1975)

This PR updates TDE NuGet and makes code changes to support the introduction of "StatusCode" being returned from NuGet.
This commit is contained in:
Steven Marturano
2023-04-03 16:30:08 -04:00
committed by GitHub
parent ffcae33b18
commit ffa42b4435
6 changed files with 15 additions and 4 deletions

View File

@@ -965,7 +965,8 @@ namespace Microsoft.SqlTools.Migration
{
Name = dbName,
Success = migrationResult.Success,
Message = migrationResult.Message
Message = migrationResult.Message,
StatusCode = migrationResult.StatusCode
};
await requestContext.SendEvent(CertificateMigrationProgressEvent.Type, eventData);