Skip to content

Commit

Permalink
- now sending id of the project and not target_access_string
Browse files Browse the repository at this point in the history
  • Loading branch information
boriskovar-m2ms committed Feb 2, 2023
1 parent 585076d commit 5a3d56b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-compose.dev.vector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
web:
container_name: web_dock
# image: xchem/fragalysis-stack:latest
image: alanbchristie/fragalysis-backend:937.16
image: alanbchristie/fragalysis-backend:937.17
command: /bin/bash /code/launch-stack.sh
volumes:
- ../data/logs:/code/logs/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ const JobConfigurationDialog = ({ snapshots }) => {

const repsonse = await jobFileTransfer({
snapshot: chosenSnapshot.id,
access: currentProject.target_access_string,
access: currentProject.id,
session_project: currentSessionProject.projectID,
target: targetId,
squonk_project: dispatch(getSquonkProject()),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ const JobLauncherDialog = () => {

jobRequest({
squonk_job_name: jobLauncherData.job.slug,
access: currentProject.target_access_string,
access: currentProject.id,
session_project: currentSessionProjectID,
snapshot: jobLauncherData?.snapshot.id,
target: targetId,
Expand Down

0 comments on commit 5a3d56b

Please sign in to comment.