Skip to content

Commit 1295bca

Browse files
Merge pull request #91592 from ggailey777/patch-8
Add note about the CRON timezone
2 parents ea6e112 + b08be22 commit 1295bca

File tree

3 files changed

+22
-16
lines changed

3 files changed

+22
-16
lines changed

articles/app-service/webjobs-create.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
---
22
title: Run Background tasks with WebJobs - Azure App Service
33
description: Learn how to use WebJobs to run background tasks in Azure App Service web apps, API apps, or mobile apps.
4-
services: app-service
54
author: ggailey777
6-
manager: jeconnoc
7-
editor: jimbe
8-
ms.assetid: af01771e-54eb-4aea-af5f-f883ff39572b
5+
manager: wgallace
6+
s.assetid: af01771e-54eb-4aea-af5f-f883ff39572b
97
ms.service: app-service
10-
ms.topic: article
8+
ms.topic: conceptual
119
ms.date: 10/16/2018
1210
ms.author: glenga
1311
ms.reviewer: msangapu;david.ebbo;suwatch;pbatum;naren.soni
@@ -18,14 +16,14 @@ ms.custom: seodec18
1816

1917
# Run Background tasks with WebJobs in Azure App Service
2018

19+
This article shows how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. For information about how to develop and deploy WebJobs by using Visual Studio, see [Deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
20+
2121
## Overview
22-
WebJobs is a feature of [Azure App Service](https://docs.microsoft.com/azure/app-service/) that enables you to run a program or script in the same context as a web app, API app, or mobile app. There is no additional cost to use WebJobs.
22+
WebJobs is a feature of [Azure App Service](index.yml) that enables you to run a program or script in the same context as a web app, API app, or mobile app. There is no additional cost to use WebJobs.
2323

2424
> [!IMPORTANT]
2525
> WebJobs is not yet supported for App Service on Linux.
2626
27-
This article shows how to deploy WebJobs by using the [Azure portal](https://portal.azure.com) to upload an executable or script. For information about how to develop and deploy WebJobs by using Visual Studio, see [Deploy WebJobs using Visual Studio](webjobs-dotnet-deploy-vs.md).
28-
2927
The Azure WebJobs SDK can be used with WebJobs to simplify many programming tasks. For more information, see [What is the WebJobs SDK](https://github.com/Azure/azure-webjobs-sdk/wiki).
3028

3129
Azure Functions provides another way to run programs and scripts. For a comparison between WebJobs and Functions, see [Choose between Flow, Logic Apps, Functions, and WebJobs](../azure-functions/functions-compare-logic-apps-ms-flow-webjobs.md).
@@ -178,6 +176,8 @@ You can enter a [NCRONTAB expression](../azure-functions/functions-bindings-time
178176

179177
To learn more, see [Scheduling a triggered WebJob](webjobs-dotnet-deploy-vs.md#scheduling-a-triggered-webjob).
180178

179+
[!INCLUDE [webjobs-cron-timezone-note](../../includes/webjobs-cron-timezone-note.md)]
180+
181181
## <a name="ViewJobHistory"></a> View the job history
182182

183183
1. Select the WebJob you want to see history for, and then select the **Logs** button.

articles/app-service/webjobs-dotnet-deploy-vs.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,12 @@
11
---
22
title: Develop and deploy WebJobs using Visual Studio - Azure
33
description: Learn how to develop and deploy Azure WebJobs to Azure App Service using Visual Studio.
4-
services: app-service
5-
documentationcenter: ''
64
author: ggailey777
7-
manager: jeconnoc
8-
5+
manager: gwallace
96
ms.assetid: a3a9d320-1201-4ac8-9398-b4c9535ba755
107
ms.service: app-service
11-
ms.devlang: dotnet
12-
ms.topic: article
13-
ms.tgt_pltfrm: na
8+
ms.topic: conceptual
149
ms.custom: vs-azure
15-
ms.workload: azure-vs
1610
ms.date: 02/18/2019
1711
ms.author: glenga
1812
ms.reviewer: david.ebbo;suwatch;pbatum;naren.soni
@@ -227,6 +221,8 @@ When you [create a WebJob from the Azure portal](webjobs-create.md), the setting
227221

228222
WebJobs uses the same CRON expressions for scheduling as the timer trigger in Azure Functions. To learn more about CRON support, see the [timer trigger reference article](../azure-functions/functions-bindings-timer.md#ncrontab-expressions).
229223

224+
[!INCLUDE [webjobs-cron-timezone-note](../../includes/webjobs-cron-timezone-note.md)]
225+
230226
### setting.job reference
231227

232228
The following settings are supported by WebJobs:
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
author: ggailey777
3+
ms.service: app-service
4+
ms.topic: include
5+
ms.date: 10/13/2019
6+
ms.author: glenga
7+
---
8+
9+
> [!NOTE]
10+
> The default time zone used to run CRON expressions is Coordinated Universal Time (UTC). To have your CRON expression run based on another time zone, create an app setting for your function app named WEBSITE_TIME_ZONE. To learn more, see [NCRONTAB time zones](../articles/azure-functions/functions-bindings-timer.md#ncrontab-time-zones).

0 commit comments

Comments
 (0)