diff --git a/management/server/sql_store.go b/management/server/sql_store.go index 930b1ce90..6b1defd64 100644 --- a/management/server/sql_store.go +++ b/management/server/sql_store.go @@ -36,7 +36,7 @@ import ( const ( storeSqliteFileName = "store.db" idQueryCondition = "id = ?" - keyQueryCondition = "key = ?" + keyQueryCondition = "`key` = ?" accountAndIDQueryCondition = "account_id = ? and id = ?" accountIDCondition = "account_id = ?" peerNotFoundFMT = "peer %s not found"