Skip to content

Commit 4bc4fc7

Browse files
number-phimatthchr
authored andcommitted
Fix C# Samples "Text Search" (#274)
* Fix C# Samples "Text Search" * removed unused attribute
1 parent b72ca16 commit 4bc4fc7

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

CSharp/TextSearch/Common/Constants.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ namespace Microsoft.Azure.Batch.Samples.TextSearch
99
/// </summary>
1010
public static class Constants
1111
{
12-
public const string JobManagerExecutable = "JobManagerTask.exe";
1312
public const string MapperTaskExecutable = "MapperTask.exe";
1413
public const string ReducerTaskExecutable = "ReducerTask.exe";
1514
public const string ReducerTaskResultBlobName = "ReducerTaskOutput";
@@ -24,9 +23,7 @@ public static class Constants
2423
/// </summary>
2524
public readonly static IReadOnlyList<string> RequiredExecutableFiles = new List<string>
2625
{
27-
JobManagerExecutable,
28-
JobManagerExecutable + ".config",
29-
"JobManagerTask.pdb",
26+
"JobSubmitter.pdb",
3027
MapperTaskExecutable,
3128
MapperTaskExecutable + ".config",
3229
"MapperTask.pdb",

0 commit comments

Comments
 (0)