hashing reps and submission blobs

This commit is contained in:
2023-01-27 11:57:15 +00:00
parent 2a5ea53536
commit 061fd71e1e
3 changed files with 32 additions and 37 deletions
+7 -2
View File
@@ -795,10 +795,11 @@ export const getAwaitingSubmissionFromBlob = (containerName) => {
export const getRepsFromBlob = (containerName) => {
console.log(
"///////////////////////getRepsFromBlob: " +
"///////////////////////\ngetRepsFromBlob: " +
containerName +
"\n///////////////////////\n"
);
return axios
.get(
BASE_URL +
@@ -819,7 +820,11 @@ export const getAwaitingSubmissionFromBlobProxy = (containerName) => {
.get(
BASE_URL +
"/api/file/getawaitingsubmissionfromblob?container=" +
containerName
containerName +
+hashAPIPath(
"/api/file/getawaitingsubmissionfromblob?container=" +
containerName
)
)
.then((res) => {
return res.data;