Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dex
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
dex
Commits
bfe53e0b
Commit
bfe53e0b
authored
Jan 19, 2016
by
bobbyrullo
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #275 from ericchiang/decode_err
db: log ignored base64 decode error
parents
67c1bd6a
d255007e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
client.go
db/client.go
+1
-1
No files found.
db/client.go
View file @
bfe53e0b
...
...
@@ -240,7 +240,7 @@ func (r *clientIdentityRepo) Authenticate(creds oidc.ClientCredentials) (bool, e
dec
,
err
:=
base64
.
URLEncoding
.
DecodeString
(
creds
.
Secret
)
if
err
!=
nil
{
log
.
Errorf
(
"error Decoding client creds
"
)
log
.
Errorf
(
"error Decoding client creds
: %v"
,
err
)
return
false
,
nil
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment