From 5e56871fd99bd2738245c14ab952d7eab646fcdf Mon Sep 17 00:00:00 2001 From: Giulio Talarico <62653082+giuliotal@users.noreply.github.com> Date: Mon, 21 Aug 2023 17:07:01 +0200 Subject: [PATCH] docs: fix line break in Apache Druid page (#25034) --- docs/docs/databases/druid.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/docs/databases/druid.mdx b/docs/docs/databases/druid.mdx index 95e9bbc15a8a9..18b8fa5dd00cb 100644 --- a/docs/docs/databases/druid.mdx +++ b/docs/docs/databases/druid.mdx @@ -10,7 +10,7 @@ import useBaseUrl from "@docusaurus/useBaseUrl"; ## Apache Druid A native connector to Druid ships with Superset (behind the `DRUID_IS_ACTIVE` flag) but this is -slowly getting deprecated in favor of SQLAlchemy / DBAPI connector made available in the +slowly getting deprecated in favor of the SQLAlchemy / DBAPI connector made available in the [pydruid library](https://pythonhosted.org/pydruid/). The connection string looks like: @@ -20,10 +20,10 @@ druid://:@:/druid/v2/sql ``` Here's a breakdown of the key components of this connection string: -User: username portion of the credentials needed to connect to your database -Password: password portion of the credentials needed to connect to your database -Host: IP address (or URL) of the host machine that's running your database -Port: specific port that's exposed on your host machine where your database is running +- `User`: username portion of the credentials needed to connect to your database +- `Password`: password portion of the credentials needed to connect to your database +- `Host`: IP address (or URL) of the host machine that's running your database +- `Port`: specific port that's exposed on your host machine where your database is running ### Customizing Druid Connection