Skip to content

Commit

Permalink
master | delete QA endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
edutomesco committed Oct 7, 2024
1 parent 9348f81 commit b214370
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions internal/services/criteria/verification_status.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package criteria

import (
"bloock-identity-managed-api/internal/domain"
"bloock-identity-managed-api/internal/platform/utils"
"context"
"errors"
"github.com/rs/zerolog"
)

Expand All @@ -20,8 +20,7 @@ func NewVerificationStatus(verificationSyncMap *utils.SyncMap, l zerolog.Logger)
}

func (v VerificationStatus) Get(ctx context.Context, sessionId string) error {
return errors.New("error from getter")
/*res := v.verificationSyncMap.Load(sessionId)
res := v.verificationSyncMap.Load(sessionId)
if res == nil {
err := domain.ErrSessionIdNotFound
v.logger.Error().Err(err).Msg("")
Expand All @@ -40,5 +39,5 @@ func (v VerificationStatus) Get(ctx context.Context, sessionId string) error {
return err
}

return nil*/
return nil
}

0 comments on commit b214370

Please sign in to comment.