Skip to content

Commit

Permalink
FOGL-8851 Fix typo in statistics description (#1400)
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Riddoch <mark@dianomic.com>
  • Loading branch information
MarkRiddoch committed Jun 24, 2024
1 parent 60272c5 commit 0e26076
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion C/services/north/data_send.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ bool DataSender::createStats(const std::string &key,
}
else
{
description = key + " Noth";
description = key + " North";
}
InsertValues values;
values.push_back(InsertValue("key", key));
Expand Down
3 changes: 2 additions & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
fledge_version=2.4.0
fledge_schema=72
fledge_schema=73

1 change: 1 addition & 0 deletions scripts/plugins/storage/postgres/downgrade/72.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- No action required
1 change: 1 addition & 0 deletions scripts/plugins/storage/postgres/upgrade/73.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update statistics set description = 'Readings Sent North' where description = 'Readings Sent Noth';
1 change: 1 addition & 0 deletions scripts/plugins/storage/sqlite/downgrade/72.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- No action required
1 change: 1 addition & 0 deletions scripts/plugins/storage/sqlite/upgrade/73.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update statistics set description = 'Readings Sent North' where description = 'Readings Sent Noth';
1 change: 1 addition & 0 deletions scripts/plugins/storage/sqlitelb/downgrade/72.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- No action required
1 change: 1 addition & 0 deletions scripts/plugins/storage/sqlitelb/upgrade/73.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
update statistics set description = 'Readings Sent North' where description = 'Readings Sent Noth';

0 comments on commit 0e26076

Please sign in to comment.