You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently every datasource is checked if it is starting with http(s) which leads to an error in the newest version of grafana (4.6.0) which supports postgresql as a datasource.
With this check it is impossible to set a valid postgresql datasource.
Valid solutions would be to remove this check or check the datasource type before.
What do you think?
The text was updated successfully, but these errors were encountered:
By looking at the granafa code, DataSource.Url is a string. I can't find any test nor documentation about a formal format for this string, thus we can expect other format than https?://www.example.com or host:port in the future.
Currently every datasource is checked if it is starting with http(s) which leads to an error in the newest version of grafana (4.6.0) which supports postgresql as a datasource.
With this check it is impossible to set a valid postgresql datasource.
Valid solutions would be to remove this check or check the datasource type before.
What do you think?
The text was updated successfully, but these errors were encountered: