From ef7633ea508c3aa45f20ae5d05d889a5f6b1dc77 Mon Sep 17 00:00:00 2001
From: =?utf8?q?Gr=C3=A9gory=20Burri?= <gregory.burri@matisa.ch>
Date: Mon, 9 Sep 2019 09:36:25 +0200
Subject: [PATCH] Comment out the DB update/creation call

---
 backend/src/main.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/backend/src/main.rs b/backend/src/main.rs
index 3063c63..a701f72 100644
--- a/backend/src/main.rs
+++ b/backend/src/main.rs
@@ -28,7 +28,7 @@ pub struct Request {
 
 fn main_page(query: Query<Request>) -> Result<HttpResponse> {
 
-    let main_template = MainTemplate { test: &"test" };
+    let main_template = MainTemplate { test: &"* test *" };
 
     let s = main_template.render().unwrap();
     Ok(HttpResponse::Ok().content_type("text/html").body(s))
@@ -60,7 +60,7 @@ fn main() -> std::io::Result<()> {
 
     println!("Configuration: {:?}", config);
 
-    let database_connection = db::create_or_update();
+    // let database_connection = db::create_or_update();
 
     std::env::set_var("RUST_LOG", "actix_web=info");
     env_logger::init();
-- 
2.49.0