Skip to content

Commit

Permalink
Change blocking.io parameter description
Browse files Browse the repository at this point in the history
  • Loading branch information
mohanvive committed Aug 23, 2019
1 parent d6430ed commit bc6f50b
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,6 @@
"`http://localhost:8080/endpoint`,\n" +
"`https://localhost:8080/endpoint`",
type = {DataType.STRING}),
@Parameter(
name = "blocking.io",
description = "Blocks the request thread until a response it received from HTTP " +
"call-response source before sending any other request.",
type = {DataType.BOOL},
optional = true,
defaultValue = "false"),
@Parameter(
name = "basic.auth.username",
description = "The username to be included in the authentication header when calling " +
Expand Down Expand Up @@ -175,6 +168,13 @@
type = {DataType.STRING},
optional = true,
defaultValue = "-"),
@Parameter(
name = "blocking.io",
description = "Blocks the request thread until a response it received from HTTP " +
"endpoint. This should be enabled for reliable messaging (error handling)",
type = {DataType.BOOL},
optional = true,
defaultValue = "false"),
@Parameter(
name = "headers",
description = "HTTP request headers in format `\"'<key>:<value>','<key>:<value>'\"`.\n" +
Expand Down

0 comments on commit bc6f50b

Please sign in to comment.