From ef1e9772f4e379fb218f525cd8ffe32232371308 Mon Sep 17 00:00:00 2001 From: Shu Yang Date: Thu, 30 Jan 2025 22:11:12 -0800 Subject: [PATCH] Update part13a.md ssl is no longer supported. I actually don't know what is the correct way but deleting "ssl: {}" does make it work. --- src/content/13/en/part13a.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/content/13/en/part13a.md b/src/content/13/en/part13a.md index 4c13c5b929..92ec98857c 100644 --- a/src/content/13/en/part13a.md +++ b/src/content/13/en/part13a.md @@ -301,12 +301,7 @@ Note: if you use Heroku, you might need an extra option in connecting the databa ```js const sequelize = new Sequelize(process.env.DATABASE_URL, { // highlight-start - dialectOptions: { - ssl: { - require: true, - rejectUnauthorized: false - } - }, + dialectOptions: {}, // highlight-end }) ```