Skip to content

Commit a1a32c8

Browse files
Merge branch 'crs-custom-handlers' of https://github.com/craigshoemaker/azure-docs-pr into crs-custom-handlers
2 parents 46a3316 + bf7cec9 commit a1a32c8

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

articles/azure-functions/functions-custom-handlers.md

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -150,22 +150,22 @@ A request payload similar to this example is returned:
150150

151151
```json
152152
{
153-
"Data": {
154-
"myQueueItem": "{ message: \"Message sent\" }"
155-
},
156-
"Metadata": {
157-
"DequeueCount": 1,
158-
"ExpirationTime": "2019-10-16T17:58:31+00:00",
159-
"Id": "800ae4b3-bdd2-4c08-badd-f08e5a34b865",
160-
"InsertionTime": "2019-10-09T17:58:31+00:00",
161-
"NextVisibleTime": "2019-10-09T18:08:32+00:00",
162-
"PopReceipt": "AgAAAAMAAAAAAAAAAgtnj8x+1QE=",
163-
"sys": {
164-
"MethodName": "QueueTrigger",
165-
"UtcNow": "2019-10-09T17:58:32.2205399Z",
166-
"RandGuid": "24ad4c06-24ad-4e5b-8294-3da9714877e9"
167-
}
168-
}
153+
"Data": {
154+
"myQueueItem": "{ message: \"Message sent\" }"
155+
},
156+
"Metadata": {
157+
"DequeueCount": 1,
158+
"ExpirationTime": "2019-10-16T17:58:31+00:00",
159+
"Id": "800ae4b3-bdd2-4c08-badd-f08e5a34b865",
160+
"InsertionTime": "2019-10-09T17:58:31+00:00",
161+
"NextVisibleTime": "2019-10-09T18:08:32+00:00",
162+
"PopReceipt": "AgAAAAMAAAAAAAAAAgtnj8x+1QE=",
163+
"sys": {
164+
"MethodName": "QueueTrigger",
165+
"UtcNow": "2019-10-09T17:58:32.2205399Z",
166+
"RandGuid": "24ad4c06-24ad-4e5b-8294-3da9714877e9"
167+
}
168+
}
169169
}
170170
```
171171

@@ -410,6 +410,7 @@ With this configuration, you can start the Function's host process using the fol
410410
```bash
411411
func host start
412412
```
413+
413414
Once the process is started, you can attach a debugger and hit breakpoints.
414415

415416
### Visual Studio Code
@@ -444,4 +445,4 @@ A custom handler can be deployed to any Azure Functions hosting option. If your
444445

445446
## Samples
446447

447-
Refer to the [custom handler samples GitHub repo](https://github.com/pragnagopa/functions-http-worker) for examples of how to implement functions in a variety of different languages.
448+
Refer to the [custom handler samples GitHub repo](https://github.com/pragnagopa/functions-http-worker) for examples of how to implement functions in a variety of different languages.

0 commit comments

Comments
 (0)