From 9d3dbf0b61a8881e7e359bb8d96d746ca7c43406 Mon Sep 17 00:00:00 2001 From: Jack Liu Date: Tue, 28 May 2019 22:44:51 -0700 Subject: [PATCH] Updated the IsSystem property to be true for ExportJobRecord. --- .../Storage/Operations/Export/CosmosExportJobRecordWrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.Health.Fhir.CosmosDb/Features/Storage/Operations/Export/CosmosExportJobRecordWrapper.cs b/src/Microsoft.Health.Fhir.CosmosDb/Features/Storage/Operations/Export/CosmosExportJobRecordWrapper.cs index 356d25e09a..bfd241452c 100644 --- a/src/Microsoft.Health.Fhir.CosmosDb/Features/Storage/Operations/Export/CosmosExportJobRecordWrapper.cs +++ b/src/Microsoft.Health.Fhir.CosmosDb/Features/Storage/Operations/Export/CosmosExportJobRecordWrapper.cs @@ -42,6 +42,6 @@ protected CosmosExportJobRecordWrapper() public string ETag { get; protected set; } [JsonProperty(KnownDocumentProperties.IsSystem)] - public bool IsSystem { get; } = false; + public bool IsSystem { get; } = true; } }