Skip to content

Commit

Permalink
Merge pull request #106 from nerc-project/release-v0.3.6
Browse files Browse the repository at this point in the history
release v0.3.6
  • Loading branch information
jtriley authored Feb 20, 2024
2 parents a17dcdd + 3f32ab1 commit 7a63083
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ COPY requirements.txt /tmp/requirements.txt
RUN pip3 install -r /tmp/requirements.txt

COPY patches/01_add_api_urls.patch /opt/venv/lib/python3.9/site-packages/
COPY patches/02_fix_allocation_denied_revoked_PR596.patch /opt/venv/lib/python3.9/site-packages/
RUN cd /opt/venv/lib/python3.9/site-packages && \
patch -p1 < 01_add_api_urls.patch
patch -p1 < 01_add_api_urls.patch && \
patch -p1 < 02_fix_allocation_denied_revoked_PR596.patch

# Final Image
FROM python:3.9-slim-bullseye
Expand Down
14 changes: 14 additions & 0 deletions patches/02_fix_allocation_denied_revoked_PR596.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
diff --git a/coldfront/core/allocation/views.py b/coldfront/core/allocation/views.py
index 216c3531c..ec129fc39 100644
--- a/coldfront/core/allocation/views.py
+++ b/coldfront/core/allocation/views.py
@@ -238,7 +238,7 @@ def post(self, request, *args, **kwargs):
allocation_obj.end_date = None
allocation_obj.save()

- if allocation_obj.status.name == ['Denied', 'Revoked']:
+ if allocation_obj.status.name in ['Denied', 'Revoked']:
allocation_disable.send(
sender=self.__class__, allocation_pk=allocation_obj.pk)
allocation_users = allocation_obj.allocationuser_set.exclude(

6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
git+https://github.com/ubccr/[email protected]#egg=coldfront
git+https://github.com/nerc-project/coldfront-plugin-cloud@v0.4.1#egg=coldfront_plugin_cloud
git+https://github.com/nerc-project/coldfront-plugin-keycloak@0dd8e0ae65211d2f145abfd8d1402efe96562d29#egg=coldfront_plugin_keycloak_usersearch
git+https://github.com/nerc-project/coldfront-plugin-api.git@f0bfbd9d5e6707eb8bb7297b782502012d2b1266#egg=coldfront_plugin_api
git+https://github.com/nerc-project/coldfront-plugin-cloud@1fff22e096c3440bb783f1152a985f14eeef47b9#egg=coldfront_plugin_cloud
git+https://github.com/nerc-project/coldfront-plugin-keycloak@d5f02df7bef5b4ab787d3ebb21cd11f3c133138f#egg=coldfront_plugin_keycloak_usersearch
git+https://github.com/nerc-project/coldfront-plugin-api.git@e3e4741239671b7ab0c3c01bab28f134845cd000#egg=coldfront_plugin_api
mysqlclient
psycopg2 >= 2.8, < 2.9
mozilla-django-oidc
Expand Down

0 comments on commit 7a63083

Please sign in to comment.