You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by cg...@apache.org on 2023/04/16 14:15:37 UTC

[drill] branch master updated: [MINOR UPDATE] Fix Error In HTTP Plugin Docs

This is an automated email from the ASF dual-hosted git repository.

cgivre pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/drill.git


The following commit(s) were added to refs/heads/master by this push:
     new 5e84f90830 [MINOR UPDATE] Fix Error In HTTP Plugin Docs
5e84f90830 is described below

commit 5e84f9083065137271e0a3d984ba6d0d87d2dac7
Author: Charles S. Givre <cg...@apache.org>
AuthorDate: Sun Apr 16 10:15:30 2023 -0400

    [MINOR UPDATE] Fix Error In HTTP Plugin Docs
---
 contrib/storage-http/README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/storage-http/README.md b/contrib/storage-http/README.md
index 797ab5f407..7d0ce10876 100644
--- a/contrib/storage-http/README.md
+++ b/contrib/storage-http/README.md
@@ -137,7 +137,7 @@ postBody: "key1=value1
 key2=value2"
 ```
 
-`postBodyLocation`:  If the API uses the `POST` method, you can send parameters in several different ways:
+`postParameterLocation`:  If the API uses the `POST` method, you can send parameters in several different ways:
 * `query_string`:  Parameters from the query are pushed down to the query string.  Static parameters are pushed to the post body.
 * `post_body`:  Both static and parameters from the query are pushed to the post body as key/value pairs
 * `json_body`:  Both static and parameters from the query are pushed to the post body as json.