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
78bb498f
Commit
78bb498f
authored
Sep 10, 2019
by
Chris Hines
Browse files
fix regression where changing the requested time was not reflected in the actual job
parent
ef9e0a8a
Pipeline
#7818
passed with stages
in 4 minutes and 53 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/app/launch-dialog/launch-dialog.component.ts
View file @
78bb498f
...
...
@@ -5,7 +5,7 @@ import { Renderer2 } from '@angular/core';
import
{
TesService
}
from
'
../tes.service
'
;
import
{
Observable
,
merge
,
pipe
,
timer
,
Subscription
}
from
'
rxjs
'
;
import
{
BehaviorSubject
}
from
'
rxjs
'
;
import
{
take
}
from
'
rxjs/operators
'
;
import
{
take
,
skip
}
from
'
rxjs/operators
'
;
import
{
Identity
}
from
'
../identity
'
;
import
{
Strudelapp
}
from
'
../strudelapp
'
;
import
{
BatchInterface
}
from
'
../batchinterface
'
;
...
...
@@ -142,9 +142,9 @@ export class LaunchDialogComponent implements OnInit {
launch
()
{
// tell the batchbuilder iframe that lanch was selected
// This is the
que
ue to save the values as defaults for next launch
// This is the
c
ue to save the values as defaults for next launch
this
.
batchbuilderiframe
.
nativeElement
.
contentWindow
.
postMessage
(
'
launch selected
'
,
"
*
"
);
this
.
submitcmd
.
pipe
(
take
(
1
)).
subscribe
(
(
submitcmd
)
=>
this
.
reallyLaunch
(
submitcmd
))
this
.
submitcmd
.
pipe
(
skip
(
1
),
take
(
1
)).
subscribe
(
(
submitcmd
)
=>
this
.
reallyLaunch
(
submitcmd
))
this
.
launchNext
=
true
;
}
...
...
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