Skip to content

Commit

Permalink
Checkin.
Browse files Browse the repository at this point in the history
No-Issue

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner committed Oct 2, 2023
1 parent 9cc9c0f commit 5372025
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion galaxy_ng/social/pipeline/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def create_user(strategy, details, backend, user=None, *args, **kwargs):
}

new_user = strategy.create_user(**fields)
print(f'create_user(10): {new_user}')
logger.info(f'create_user(10): {new_user}')
return {
'is_new': True,
'user': new_user
Expand Down
2 changes: 1 addition & 1 deletion profiles/community/github_mock/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ RUN pip install -r /app/requirements.txt
RUN mkdir -p /src
RUN test -d /src/werkzeug || git clone -b SAVE_THE_STREAMS https://github.com/jctanner/werkzeug /src/werkzeug
RUN pip install -e /src/werkzeug
CMD python3 /app/flaskapp.py
CMD PYTHONUNBUFFERED=1 python3 /app/flaskapp.py
2 changes: 1 addition & 1 deletion profiles/community/github_mock/flaskapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def create_tables():
CREATE TABLE IF NOT EXISTS users (
id INTEGER PRIMARY KEY AUTOINCREMENT,
login TEXT NOT NULL UNIQUE,
email TEXT NOT NULL UNIQUE,
email TEXT NOT NULL,
password TEXT NOT NULL
)
''')
Expand Down

0 comments on commit 5372025

Please sign in to comment.