Skip to content

Commit 9bd753f

Browse files
committed
lint fix
Signed-off-by: Angelo De Caro <adc@zurich.ibm.com>
1 parent 9443107 commit 9bd753f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

token/services/db/sql/postgres/tokens.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ import (
1313
)
1414

1515
type (
16-
TokenStore = common.TokenStore
17-
TokenNotifier = postgres.Notifier
16+
TokenStore = common.TokenStore
17+
//nolint:staticcheck
18+
TokenNotifier = postgres.Notifier //lint:ignore SA1019 postgres.Notifier is deprecated: Notifier exists to track notification on tokens stored in postgres in the Token SDK. The Token SDK is the only user of this, thus, the code may be migrated. Notifier should not be used anymore.
1819
)
1920

2021
func NewTokenStore(dbs *common2.RWDB, tableNames common.TableNames) (*TokenStore, error) {

0 commit comments

Comments
 (0)