Internal flag to filter detectors in training search (#327)

* Handle the case where Kusto cluster is already follower in region mappings (#312)

Updated the Kusto Query to remove follower from the returned data. We add it manually and store it in respective dictionaries.

* Create Nuget Packages (#317)

* Increment package versions

* Directory "build" was being created two parent directories above, instead of inside the repo

* Fix unnecessary recurring refresh of models (#320)

* Internal flag for testing detectors
This commit is contained in:
SharmaAjay19 2019-11-08 10:37:19 -08:00 коммит произвёл GitHub
Родитель bc279371c3
Коммит 7004b6b6b2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -25,6 +25,7 @@ namespace Diagnostics.RuntimeHost.Utilities
PlatformType platformType = appFilter.PlatformType;
var platformTypesList = Enum.GetValues(typeof(PlatformType)).Cast<PlatformType>().Where(p => platformType.HasFlag(p)).Select(x => Enum.GetName(typeof(PlatformType), x));
resourceParams.Add("PlatformType", String.Join(",", platformTypesList));
resourceParams.Add("InternalOnly", gResourceFilter.InternalOnly.ToString());
}
return resourceParams;
}