Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
hpc-team
strudelv2_spa
Commits
201d05e0
Commit
201d05e0
authored
Sep 22, 2020
by
Chris Hines
Browse files
make sure that we interpret SSH certificate expiry as a UTC based time, not in the local timezone
parent
81fda5e0
Pipeline
#12044
passed with stages
in 3 minutes and 27 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/app/authorisation.service.ts
View file @
201d05e0
...
...
@@ -228,7 +228,7 @@ public getKeys(id?: Identity) {
for
(
let
id
of
resp
)
{
var
validstr
:
String
;
validstr
=
id
.
Valid
[
0
];
id
.
expiry
=
Date
.
parse
(
validstr
.
split
(
"
"
)[
3
])
id
.
expiry
=
Date
.
parse
(
validstr
.
split
(
"
"
)[
3
]
+
"
Z
"
)
res
.
push
(
id
);
}
return
res
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment