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
Statistical-Genetics
jass
Commits
478ea7c7
Commit
478ea7c7
authored
May 17, 2022
by
Bryan BRANCOTTE
Browse files
remove ending slash to prevent url rewrite with wrong http protocole
parent
d3007d6d
Changes
2
Hide whitespace changes
Inline
Side-by-side
client/pages/projects/_id.vue
View file @
478ea7c7
...
...
@@ -571,7 +571,7 @@ methods:{
async
getStatus
(){
await
this
.
$axios
.
$get
(
'
/queue_status
/
'
).
then
((
async
function
(
resultStatus
)
{
await
this
.
$axios
.
$get
(
'
/queue_status
'
).
then
((
function
(
resultStatus
)
{
console
.
log
(
resultStatus
);
this
.
activeTask
=
resultStatus
.
active
;
this
.
pendingTask
=
resultStatus
.
reserved
;
...
...
jass/server.py
View file @
478ea7c7
...
...
@@ -168,7 +168,7 @@ def get_manhattan(project_id: str, selected_chr: str, selected_region: str):
@
app
.
get
(
"/api/queue_status"
)
def
project_detail
():
def
queue_status
():
return
JSONResponse
(
get_queue_status
())
...
...
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