Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Open Subsurface Data Universe Software
Platform
System
Notification
Commits
50619786
Commit
50619786
authored
Jul 22, 2021
by
Nikhil Singh[MicroSoft]
Browse files
Commit 12 Contents:
1-Remove extra exception catching
parent
5886e2cb
Pipeline
#53716
failed with stages
in 56 seconds
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
notification-core/src/main/java/org/opengroup/osdu/notification/auth/HmacAuth.java
View file @
50619786
...
...
@@ -43,12 +43,8 @@ public class HmacAuth implements SecretAuth {
public
String
getPushUrl
(
String
endpoint
)
throws
Exception
{
String
pushUrl
=
endpoint
;
try
{
String
signedjwt
=
this
.
signatureService
.
getSignedSignature
(
endpoint
,
hmacSecret
.
getValue
());
pushUrl
+=
"?hmac="
+
signedjwt
;
}
catch
(
Exception
e
)
{
throw
e
;
}
String
signedjwt
=
this
.
signatureService
.
getSignedSignature
(
endpoint
,
hmacSecret
.
getValue
());
pushUrl
+=
"?hmac="
+
signedjwt
;
return
pushUrl
;
}
...
...
Write
Preview
Supports
Markdown
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