potiuk commented on a change in pull request #4523: [AIRFLOW-3616] Add aliases for schema with underscore URL: https://github.com/apache/airflow/pull/4523#discussion_r249286124
########## File path: docs/howto/manage-connections.rst ########## @@ -70,10 +70,15 @@ When referencing the connection in the Airflow pipeline, the ``conn_id`` should be the name of the variable without the prefix. For example, if the ``conn_id`` is named ``postgres_master`` the environment variable should be named ``AIRFLOW_CONN_POSTGRES_MASTER`` (note that the environment variable -must be all uppercase). Airflow assumes the value returned from the -environment variable to be in a URI format (e.g. -``postgres://user:password@localhost:5432/master`` or -``s3://accesskey:secretkey@S3``). +must be all uppercase). + +Airflow assumes the value returned from the environment variable to be in a URI +format (e.g.``postgres://user:password@localhost:5432/master`` or +``s3://accesskey:secretkey@S3``). The underscore character is not allowed +in the scheme part of URI, so it must be changed to a minus characeter +(e.g. `google-compute-platform` if `conn_type` is `google_compute_platform`). +Query parameters is parsed to one-dimensional dict and then used to fill extra. Review comment: is -> are ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
