From ab8dae5002506bd00f9632dd27e1da0c23f198f6 Mon Sep 17 00:00:00 2001
From: crowfeathers00 <56939086+crowfeathers00@users.noreply.github.com>
Date: Wed, 30 Oct 2019 16:39:26 -0400
Subject: [PATCH] Question 3 Week 6

---
 server.js | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/server.js b/server.js
index b7e51a2..c163f4e 100644
--- a/server.js
+++ b/server.js
@@ -22,12 +22,12 @@ app.get("/getBooks", function(req, res){
             }
         });
     });
-    setTimeout(function(){ 
+    setTimeout(function(){
         db.close();
         res.send(output);
     }, 500);
 });
 
-app.listen('8080', function(){
+app.listen('8034', function(){
     console.log("listening at port 8080...");
-});
\ No newline at end of file
+});
-- 
GitLab