Skip to content

Commit

Permalink
Update driverstore.go
Browse files Browse the repository at this point in the history
  • Loading branch information
arjun-sd authored Feb 9, 2024
1 parent 0a40286 commit 05a93e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/driver/driverstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func (s *driverStore) FindDriverIDs(ctx context.Context) []string {
drivers := make([]string, 10)
for i := range drivers {
// #nosec
drivers[i] = fmt.Sprintf("%sN7%05dC%s",
drivers[i] = fmt.Sprintf("[[ %sN7%05dC%s ]]",
config.GetDriverIDPrefix(), rand.Int()%100000, config.GetDriverIDSuffix())
}
s.logger.For(ctx).Info("Found drivers", zap.Strings("drivers", drivers))
Expand Down

0 comments on commit 05a93e3

Please sign in to comment.