Skip to content

Commit 3e0dc4f

Browse files
committed
fix chart issue, try to fix http https redirect issue
1 parent 53a5c11 commit 3e0dc4f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ jobs:
101101
--set env.DB_PASS="$DB_PASS" \
102102
--set env.DB_SSLMODE="$DB_SSLMODE" \
103103
--set env.SERVICE_BUS_CONNECTION_STR="$SERVICE_BUS_CONNECTION_STR" \
104-
--set env.GOOGLE_CLIENT_ID="$GOOGLE_CLIENT_ID" \
105-
--set env.GOOGLE_CLIENT_SECRET="$GOOGLE_CLIENT_SECRET" \
104+
--set env.GOOGLE_CLIENT_ID="$GOOGLE_CLIENT_ID" \
105+
--set env.GOOGLE_CLIENT_SECRET="$GOOGLE_CLIENT_SECRET" \
106106
-f ci-values.yaml

app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
SECRET_KEY = os.getenv("FLASK_SECRET_KEY", "dev_secret_key") # Should be set in production
2828

2929
app.secret_key = SECRET_KEY
30+
app.config['PREFERRED_URL_SCHEME'] = 'https'
3031

3132
oauth = OAuth(app)
3233
oauth.register(

0 commit comments

Comments
 (0)