fix typo in en.json and remove trailing spaces (#8975)

This commit is contained in:
Carlos Tadeu Panato Junior
2018-06-21 16:50:35 +02:00
committed by Jesús Espino
parent 07c785e294
commit 0d741301a3
2 changed files with 7 additions and 7 deletions

View File

@@ -6428,7 +6428,7 @@
},
{
"id": "store.sql_cluster_discovery.get_all.app_error",
"translation": "Failed to get all disoery rows"
"translation": "Failed to get all discovery rows"
},
{
"id": "store.sql_cluster_discovery.set_last_ping.app_error",

View File

@@ -47,7 +47,7 @@ func (s sqlClusterDiscoveryStore) Delete(ClusterDiscovery *model.ClusterDiscover
if count, err := s.GetMaster().SelectInt(
`
DELETE
DELETE
FROM
ClusterDiscovery
WHERE
@@ -76,7 +76,7 @@ func (s sqlClusterDiscoveryStore) Exists(ClusterDiscovery *model.ClusterDiscover
if count, err := s.GetMaster().SelectInt(
`
SELECT
SELECT
COUNT(*)
FROM
ClusterDiscovery
@@ -108,7 +108,7 @@ func (s sqlClusterDiscoveryStore) GetAll(ClusterDiscoveryType, clusterName strin
if _, err := s.GetMaster().Select(
&list,
`
SELECT
SELECT
*
FROM
ClusterDiscovery
@@ -134,8 +134,8 @@ func (s sqlClusterDiscoveryStore) SetLastPingAt(ClusterDiscovery *model.ClusterD
return store.Do(func(result *store.StoreResult) {
if _, err := s.GetMaster().Exec(
`
UPDATE ClusterDiscovery
SET
UPDATE ClusterDiscovery
SET
LastPingAt = :LastPingAt
WHERE
Type = :Type
@@ -158,7 +158,7 @@ func (s sqlClusterDiscoveryStore) Cleanup() store.StoreChannel {
return store.Do(func(result *store.StoreResult) {
if _, err := s.GetMaster().Exec(
`
DELETE FROM ClusterDiscovery
DELETE FROM ClusterDiscovery
WHERE
LastPingAt < :LastPingAt
`,