diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index f242400..691e0e6 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -14,7 +14,8 @@
-
+
+
@@ -196,7 +197,7 @@
-
+
1713528225837
@@ -346,7 +347,15 @@
1716889664199
-
+
+
+ 1716890009616
+
+
+
+ 1716890009616
+
+
@@ -384,6 +393,7 @@
-
+
+
\ No newline at end of file
diff --git a/code/web/incoming_request_handlers.js b/code/web/incoming_request_handlers.js
index 2d13b29..79609e5 100644
--- a/code/web/incoming_request_handlers.js
+++ b/code/web/incoming_request_handlers.js
@@ -46,7 +46,7 @@ function handleIncoming(request, response, app, pool)
.catch(_ => {
response
.status(500)
- .send(JSON.stringify({error: 'Internal server error'}));
+ .send(JSON.stringify({error: 'Internal server error (Querying)'}));
})
.finally(() => {
conn.end();
@@ -55,7 +55,7 @@ function handleIncoming(request, response, app, pool)
.catch(_ => {
response
.status(500)
- .send(JSON.stringify({error: 'Internal server error'}));
+ .send(JSON.stringify({error: 'Internal server error (Connection)'}));
});
}