Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
strudelv2_spa
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hpc-team
strudelv2_spa
Commits
15ca46bb
Commit
15ca46bb
authored
1 year ago
by
Chris Hines
Browse files
Options
Downloads
Patches
Plain Diff
The submit cmd is getting the default path prepended to it, even when the full path is explicit
parent
83192ca7
No related branches found
No related tags found
1 merge request
!117
Revert "Revert "Add MLeRP Monash""
Pipeline
#103532
passed
1 year ago
Stage: build
Stage: deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/app/launchform/launchform.component.ts
+4
-1
4 additions, 1 deletion
src/app/launchform/launchform.component.ts
with
4 additions
and
1 deletion
src/app/launchform/launchform.component.ts
+
4
−
1
View file @
15ca46bb
...
...
@@ -7,6 +7,7 @@ import { TesService } from '../tes.service';
import
{
Strudelapp
,
AppAction
}
from
'
../strudelapp
'
;
import
{
Job
}
from
'
../job
'
;
import
{
BatchInterface
}
from
'
../batchinterface
'
;
import
{
Identity
}
from
'
../identity
'
;
...
...
@@ -82,6 +83,8 @@ export class LaunchformComponent {
let
bi
=
new
BatchInterface
();
bi
.
submitcmd
=
this
.
app
.
submitcmd
;
let
id
:
Identity
=
this
.
identity
.
copy_skip_catalog
()
// we should nullify the submitcmdprefix as this is only used with the old iframe method
id
.
site
.
submitcmdprefix
=
null
;
let
app
=
new
Strudelapp
()
app
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
app
))
let
submitparams
=
JSON
.
parse
(
JSON
.
stringify
(
this
.
data
))
...
...
@@ -90,7 +93,7 @@ export class LaunchformComponent {
app
.
startscript
=
btoa
(
JSON
.
stringify
(
submitparams
))
let
appparams
=
this
.
data
;
this
.
tes
.
submit
(
app
,
this
.
identity
,
bi
);
this
.
tes
.
submit
(
app
,
id
,
bi
);
}
}
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