Skip to content

Commit

Permalink
recommendations.py -> recommend() -> bugfix (missing parameter 'type')
Browse files Browse the repository at this point in the history
  • Loading branch information
Deniz Türkmen authored and Deniz Türkmen committed Oct 9, 2024
1 parent 2abaedb commit a823cd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/app/api/recommendations.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ def recommend():

if session_id is None:
# make new session and get session_id as sid
session_id = create_new_session(container_name=container_name)
session_id = create_new_session(container_name=container_name, type="recommender")
else:
if db.session.query(Session).get(session_id) is None:
session_id = create_new_session(
Expand Down

0 comments on commit a823cd4

Please sign in to comment.