From 2ebdce20b1797858f8b20144eabfb46e3574f3e0 Mon Sep 17 00:00:00 2001 From: Niketh Sabbineni Date: Tue, 13 Nov 2018 16:51:02 -0800 Subject: [PATCH] Fix smile query documentation (#6620) --- docs/content/querying/querying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/querying/querying.md b/docs/content/querying/querying.md index 1fdb49d7b42..59de93f21f6 100644 --- a/docs/content/querying/querying.md +++ b/docs/content/querying/querying.md @@ -39,7 +39,7 @@ Druid's native query language is JSON over HTTP, although many members of the co The Content-Type/Accept Headers can also take 'application/x-jackson-smile'. ```bash - curl -X POST ':/druid/v2/?pretty' -H 'Content-Type:application/json' -H 'Accept:x-jackson-smile' -d @ + curl -X POST ':/druid/v2/?pretty' -H 'Content-Type:application/json' -H 'Accept:application/x-jackson-smile' -d @ ``` Note: If Accept header is not provided, it defaults to value of 'Content-Type' header.