-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlocal.settings.json
More file actions
20 lines (20 loc) · 882 Bytes
/
local.settings.json
File metadata and controls
20 lines (20 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "UseDevelopmentStorage=true",
"FUNCTIONS_WORKER_RUNTIME": "dotnet-isolated",
"WEBSITE_SITE_NAME": "DataChangeTrackingFunctionApp",
"SqlConnectionString": "Server=(localdb)\\MSSQLLocalDB;Initial Catalog=DemoDatabase;Integrated Security=True;TrustServerCertificate=True;ConnectRetryCount=5;",
"Sql_Trigger_MaxBatchSize": 500,
"Sql_Trigger_PollingIntervalMs": 5000,
"Sql_Trigger_MaxChangesPerWorker": 1000,
"HttpPostBaseUrl": "https://httpbin.org/",
"RetryIntervalMinutesFirst": 6,
"RetryIntervalMinutesMax": 12,
"AllowedColumns_dbo.TrackingDemo": "Id,Name",
"NotifyOnRetryCount": 10,
"TotalRetryTimeOutHours": 168,
"KeepInstanceCompletedHistoryDays": 7,
"KeepInstanceFailedHistoryDays": 30
}
}