From 4bd43bcf541770546bfb9e97ad0666f332613d32 Mon Sep 17 00:00:00 2001 From: Tim Osse Date: Tue, 24 Jan 2023 16:33:24 -0800 Subject: [PATCH 1/3] Updated helm reference to new tusd_py3 docker image, the image contains the latest version of tusd with bug fixes --- microservices/storageApi/helm/storage-api/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/microservices/storageApi/helm/storage-api/values.yaml b/microservices/storageApi/helm/storage-api/values.yaml index e243b95d0..17d480673 100644 --- a/microservices/storageApi/helm/storage-api/values.yaml +++ b/microservices/storageApi/helm/storage-api/values.yaml @@ -11,7 +11,7 @@ image: pullPolicy: Always tus: - image: h3brandon/tusd_py3 + image: tosse/tusd_py3 tag: latest bucket: bucket region: us-east-1 #likely irrelevant From 137b825cabebc1574e358f5c5f5d5a6b13dcd38e Mon Sep 17 00:00:00 2001 From: Tim Osse Date: Wed, 25 Jan 2023 12:15:51 -0800 Subject: [PATCH 2/3] request_api test failure fix 1 --- .github/workflows/ocwa.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ocwa.yaml b/.github/workflows/ocwa.yaml index 9f7eabe16..3de1f9105 100644 --- a/.github/workflows/ocwa.yaml +++ b/.github/workflows/ocwa.yaml @@ -89,7 +89,7 @@ jobs: npm ci cd ../../formio - mongorestore -u forumUser -p forumPass -d forumDb db + ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongorestore -u forumUser -p forumPass -d forumDb db git clone -b v1.90.15 https://github.com/formio/formio.git cd formio npm ci From b1abd92281b79d178ecfd70a12360f71723d9927 Mon Sep 17 00:00:00 2001 From: Tim Osse Date: Wed, 25 Jan 2023 12:25:14 -0800 Subject: [PATCH 3/3] request_api test failure fix 2 --- .github/workflows/ocwa.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ocwa.yaml b/.github/workflows/ocwa.yaml index 3de1f9105..9569e293f 100644 --- a/.github/workflows/ocwa.yaml +++ b/.github/workflows/ocwa.yaml @@ -85,11 +85,12 @@ jobs: mkdir ${PWD}/mongodb-linux-x86_64-${MONGODB}/data ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongod --dbpath ${PWD}/mongodb-linux-x86_64-${MONGODB}/data --logpath ${PWD}/mongodb-linux-x86_64-${MONGODB}/mongodb.log --fork ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongo forumDb --eval 'db.createUser({user:"forumUser", pwd:"forumPass", roles:["dbAdmin", "readWrite"]});' + ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongorestore -u forumUser -p forumPass -d forumDb db cd ../shared/js npm ci cd ../../formio - ${PWD}/mongodb-linux-x86_64-${MONGODB}/bin/mongorestore -u forumUser -p forumPass -d forumDb db + git clone -b v1.90.15 https://github.com/formio/formio.git cd formio npm ci