Skip to content

Commit

Permalink
Fixed unmatched curly brace
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Fox committed Jun 1, 2023
1 parent f883649 commit 54e540a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# connector-grafana

## Change Log
+ **1.7.9** - Fixed unmatched curly brace when logging org preference update failure
+ **1.7.8** - Set the Grafana loki password as confidential and not required
+ **1.7.6** - Set Home Dashboard Organization Preference when a datasource is created, updated, or read and not set
+ **1.7.5** - Added "\_\_DataSourceUID\_\_" as an alternate datasource substitution code for the dashboard template.
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project_version=1.7.8
project_version=1.7.9
base_connector_version=3.0.3
config_plugin_version=3.0.3
test_connector_version=3.0.1
local_build_version=1048
local_build_version=1049
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public static void updateOrganizationPreferences(GrafanaDriver driver, Integer o
headers);
if ( rd != null && rd.getResponseStatusCode() != 200 )
{
LOG.warn("Failed to update Grafana Org {0) preferences. Returned HTTP status {1}", orgId, rd.getResponseStatusCode());
LOG.warn("Failed to update Grafana Org {0} preferences. Returned HTTP status {1}", orgId, rd.getResponseStatusCode());
}
return;
}
Expand Down

0 comments on commit 54e540a

Please sign in to comment.