Merge pull request #56 from qintao1976/current

Change Dstream's category to "experimental", and also make category m…
This commit is contained in:
Tao Qin 2015-11-15 22:29:41 -08:00
Родитель b0301671c7 6d62875583
Коммит 19372331b6
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -46,7 +46,7 @@ namespace Microsoft.Spark.CSharp
}); });
} }
[Sample("DStream")] [Sample("experimental")]
internal static void DStreamTextFileSamples() internal static void DStreamTextFileSamples()
{ {
SparkContext sc = SparkCLRSamples.SparkContext; SparkContext sc = SparkCLRSamples.SparkContext;

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

@ -210,7 +210,8 @@ namespace Microsoft.Spark.CSharp.Samples
/// </summary> /// </summary>
public bool Match(string targetCategory) public bool Match(string targetCategory)
{ {
return (CATEGORY_ALL.Equals(targetCategory) || (this.category.Equals(targetCategory))); return (CATEGORY_ALL.Equals(targetCategory, StringComparison.OrdinalIgnoreCase)
|| (this.category.Equals(targetCategory, StringComparison.OrdinalIgnoreCase)));
} }
} }
} }