Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
user-discovery-bot
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
archives
user-discovery-bot
Commits
397ee5a2
Commit
397ee5a2
authored
Jan 14, 2022
by
Jonah Husson
Browse files
Options
Downloads
Patches
Plain Diff
Downgrade fatal print to error
parent
01825dce
No related branches found
No related tags found
2 merge requests
!50
Revert "update deps"
,
!48
Release
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
twilio/verify.go
+1
-1
1 addition, 1 deletion
twilio/verify.go
with
1 addition
and
1 deletion
twilio/verify.go
+
1
−
1
View file @
397ee5a2
...
...
@@ -84,7 +84,7 @@ func (v *verifier) VerificationCheck(code string, to string) (bool, error) {
if
strings
.
Contains
(
err
.
Error
(),
"errors/20404"
)
{
return
false
,
errors
.
New
(
"Your verification code may have expired; please resubmit"
)
}
jww
.
FATAL
.
Printf
(
"Failed to submit verification check request: %+v"
,
err
)
jww
.
ERROR
.
Printf
(
"Failed to submit verification check request: %+v"
,
err
)
return
false
,
errors
.
WithMessage
(
err
,
"Failed to make verification check request"
)
}
jww
.
INFO
.
Println
(
data
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment