Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docker-jans-persistence-loader): search session by deviceSecret #6038

Merged
merged 1 commit into from
Sep 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-jans-persistence-loader/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ RUN python3 -m ensurepip \
# =====================

# janssenproject/jans SHA commit
ENV JANS_SOURCE_VERSION=39ffb3a35b397d8cac1a7472908a6aa6d17e1a33
ENV JANS_SOURCE_VERSION=ea8963c0a91a5d467a22de0b05c51bcb10fc8041
ARG JANS_SETUP_DIR=jans-linux-setup/jans_setup
ARG JANS_SCRIPT_CATALOG_DIR=docs/script-catalog
ARG JANS_CONFIG_API_RESOURCES=jans-config-api/server/src/main/resources
Expand Down
1 change: 1 addition & 0 deletions docker-jans-persistence-loader/scripts/spanner_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ def column_int_to_string(table_name, col_name):
("jansClnt", "jansReqURI"),
("jansClnt", "jansClaimRedirectURI"),
("jansClnt", "jansAuthorizedOrigins"),
("jansSessId", "deviceSecret"),
]:
column_to_array(mod[0], mod[1])

Expand Down
1 change: 1 addition & 0 deletions docker-jans-persistence-loader/scripts/sql_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ def column_from_json(table_name, col_name):
("jansClnt", "jansReqURI"),
("jansClnt", "jansClaimRedirectURI"),
("jansClnt", "jansAuthorizedOrigins"),
("jansSessId", "deviceSecret"),
]:
column_to_json(mod[0], mod[1])

Expand Down