Skip to content

Commit 112f763

Browse files
Apply suggestions from code review
Co-authored-by: Copilot <[email protected]>
1 parent d41bbf7 commit 112f763

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

articles/app-service/webjobs-execution.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ WebJobs are stored in the `site/wwwroot/App_Data/jobs/` folder of your App Servi
3939

4040
Each job has its own subfolder under the corresponding type, named after the WebJob. For example:
4141

42-
`App_Data/jobs/triggered/myjob/`
43-
`App_Data/jobs/continuous/myjob/`
42+
- `App_Data/jobs/triggered/myjob/`
43+
- `App_Data/jobs/continuous/myjob/`
4444

4545
Inside the job folder, the Kudu engine looks for a file to run. This file can be a script or executable.
4646

@@ -54,7 +54,7 @@ The filename must be exactly `run.*` to be autodetected. Files like `start.sh` o
5454
- A Node.js WebJob looks for the first `.js` file.
5555
- A Bash-based WebJob looks for the first `.sh` script.
5656

57-
If multiple script files are present, especially in multi-file projects, this fallback behavior can lead to unpredictable execution. We recommended that you include a `run.*` file to define the entry point explicitly.
57+
If multiple script files are present, especially in multi-file projects, this fallback behavior can lead to unpredictable execution. We recommend that you include a `run.*` file to define the entry point explicitly.
5858

5959
On Linux-based WebJobs, `.sh` scripts must include a shebang (`#!`) and must be marked as executable.
6060

0 commit comments

Comments
 (0)