Skip to content

Commit

Permalink
chore: variables are not exported (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenquan authored May 25, 2023
1 parent 861bb16 commit ca2c247
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions multiple.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ import (
const spanName = "multipleSql"

var (
DBTypeAttributeKey = attribute.Key("multiple_sql.type")
dbTypeAttributeKey = attribute.Key("multiple_sql.type")
followerDBSqlAttributeKey = attribute.Key("multiple_sql.follower_db")
leaderTypeAttributeKey = DBTypeAttributeKey.String("leader")
followerTypeAttributeKey = DBTypeAttributeKey.String("follower")
leaderTypeAttributeKey = dbTypeAttributeKey.String("leader")
followerTypeAttributeKey = dbTypeAttributeKey.String("follower")
sqlDriverAttributeKey = attribute.Key("sql.driver")
)

Expand Down

0 comments on commit ca2c247

Please sign in to comment.