Users.js and UserFavorites.js point to aurora.client rather than mysql.client
Closed this issue · 1 comments
JACJava commented
Hi Ryan,
I'm doing your Pluralsight AWS Developer: Designing and Developing and noticed that the Users.js and UserFavorites.js routines throw an error because both modules have this requirement that doesn't exist in the provided code (and wouldn't work anyway since the course calls for a MySQL database):
const client = require('../aurora.client')
Easily fixed by changing it to this:
const client = require('../mysql.client')
Thanks!
ryanmurakami commented
Thanks for pointing this out! I've fixed it.