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
Copy file name to clipboardExpand all lines: src/WebJobs.Script/Workers/ProcessManagement/WorkerDescription.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -19,29 +19,29 @@ public abstract class WorkerDescription
19
19
publicstringDefaultExecutablePath{get;set;}
20
20
21
21
/// <summary>
22
-
/// Gets or sets the default path to the worker
22
+
/// Gets or sets the default path to the worker.
23
23
/// </summary>
24
24
publicstringDefaultWorkerPath{get;set;}
25
25
26
26
/// <summary>
27
-
/// Gets or sets the default base directory for the worker
27
+
/// Gets or sets the default base directory for the worker.
28
28
/// </summary>
29
29
publicstringWorkerDirectory{get;set;}
30
30
31
31
/// <summary>
32
-
/// Gets or sets the command line args to pass to the worker. Will be appended after DefaultExecutablePath but before DefaultWorkerPath
32
+
/// Gets or sets the command line args to pass to the worker. Will be appended after DefaultExecutablePath but before DefaultWorkerPath.
33
33
/// </summary>
34
34
publicIList<string>Arguments{get;set;}
35
35
36
36
/// <summary>
37
-
/// Gets or sets the command line args to pass to the worker. Will be appended after DefaultWorkerPath
37
+
/// Gets or sets the command line args to pass to the worker. Will be appended after DefaultWorkerPath.
38
38
/// </summary>
39
39
publicIList<string>WorkerArguments{get;set;}
40
40
41
41
/// <summary>
42
42
/// Gets or sets a value indicating whether to use stderror stream for all console logs. Default false.
43
-
/// If set to false, Logs from stderr are written with info level by default. If Message contains keywords: error, servere then logs are written with error level.
44
-
/// If set to true, Logs from stdout stream will be written with info level and Logs from stderr steam will be written with error level
43
+
/// If set to false, Logs from stderr are written with info level by default. If Message contains keywords: error, severe then logs are written with error level.
44
+
/// If set to true, Logs from stdout stream will be written with info level and Logs from stderr steam will be written with error level.
0 commit comments