diff --git a/lib/config/config.go b/lib/config/config.go
index a2ffd865f24529b71a3c9a98476b6aa3a14b6823..8b6372088325f4050c731840cff838e9dee80463 100644
--- a/lib/config/config.go
+++ b/lib/config/config.go
@@ -6,7 +6,6 @@ import (
 	"strings"
 
 	"github.com/BurntSushi/toml"
-	"github.com/davecgh/go-spew/spew"
 	"gopkg.in/yaml.v3"
 )
 
@@ -91,7 +90,6 @@ func Load(path string) (*Global, error) {
 			}
 		}
 	}
-	spew.Println(g)
 	return &g, nil
 }
 
diff --git a/lib/gat/database/query_router/query_router.go b/lib/gat/database/query_router/query_router.go
index 0e1a6e366e3383675b62873f0893d88dd97b95d6..9592cbce4842e8c23d4c45592c8306cf490d571a 100644
--- a/lib/gat/database/query_router/query_router.go
+++ b/lib/gat/database/query_router/query_router.go
@@ -75,6 +75,10 @@ var DefaultRouter = func() *QueryRouter {
 // based on the contents of the query.
 // note that the user needs to be checked to see if they are allowed to access.
 func (r *QueryRouter) InferRole(query string) (config.ServerRole, error) {
+	// if we don't want to parse queries, route them to primary
+	/*if !r.c.QueryParserEnabled {
+		return config.SERVERROLE_PRIMARY, nil
+	}*/
 	// parse the query
 	tokens := r.parser.Lex(query)
 	var role = config.SERVERROLE_REPLICA