You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ru...@apache.org on 2023/04/27 02:46:22 UTC

[superset] branch patch-1 created (now ec0682e679)

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

rusackas pushed a change to branch patch-1
in repository https://gitbox.apache.org/repos/asf/superset.git


      at ec0682e679 Docs: Show clickable link instead of code-formatting

This branch includes the following new commits:

     new ec0682e679 Docs: Show clickable link instead of code-formatting

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[superset] 01/01: Docs: Show clickable link instead of code-formatting

Posted by ru...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rusackas pushed a commit to branch patch-1
in repository https://gitbox.apache.org/repos/asf/superset.git

commit ec0682e6795dd0aad9fb13d76df7c686b0b768f1
Author: P M <10...@users.noreply.github.com>
AuthorDate: Sat Feb 18 18:14:49 2023 +0100

    Docs: Show clickable link instead of code-formatting
---
 docs/docs/databases/mysql.mdx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/docs/databases/mysql.mdx b/docs/docs/databases/mysql.mdx
index e784321515..651721602f 100644
--- a/docs/docs/databases/mysql.mdx
+++ b/docs/docs/databases/mysql.mdx
@@ -22,7 +22,7 @@ Host:
 - For Docker running in OSX: `docker.for.mac.host.internal`
   Port: `3306` by default
 
-One problem with `mysqlclient` is that it will fail to connect to newer MySQL databases using `caching_sha2_password` for authentication, since the plugin is not included in the client. In this case, you should use `[mysql-connector-python](https://pypi.org/project/mysql-connector-python/)` instead:
+One problem with `mysqlclient` is that it will fail to connect to newer MySQL databases using `caching_sha2_password` for authentication, since the plugin is not included in the client. In this case, you should use [mysql-connector-python](https://pypi.org/project/mysql-connector-python/) instead:
 
 ```
 mysql+mysqlconnector://{username}:{password}@{host}/{database}