You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[CosmosDB] Changing the warning message for AnalyticalStorageSchemaType (Azure#15723)
* changing the warning message for AnalyticalStorageSchemaType to only display when a value has been explicitly provided
* adjusting the changelog
* Update changelog
Co-authored-by: Yeming Liu <[email protected]>
stringmessage=$"Invalid value for AnalyticalStorageSchemaType. Valid values are '{SDKModel.AnalyticalStorageSchemaType.WellDefined}' and '{SDKModel.AnalyticalStorageSchemaType.FullFidelity}'.";
174
-
WriteWarning(message);
173
+
if(!string.IsNullOrWhiteSpace(param))
174
+
{
175
+
stringmessage=$"Invalid value for AnalyticalStorageSchemaType. Valid values are '{SDKModel.AnalyticalStorageSchemaType.WellDefined}' and '{SDKModel.AnalyticalStorageSchemaType.FullFidelity}'.";
0 commit comments