Browse Source

Merge branch 'verify' of github.com:TechEmpower/FrameworkBenchmarks into verify

Keith R. Gustafson 11 years ago
parent
commit
8d5fc163f9

+ 1 - 1
compojure/benchmark_config

@@ -4,7 +4,7 @@
     "default": {
       "setup_file": "setup",
       "json_url": "/compojure/json",
-      "db_url": "/compojure/db/1",
+      "db_url": "/compojure/db",
       "query_url": "/compojure/db/",
       "fortune_url": "/compojure/fortune-hiccup",
       "plaintext_url": "/compojure/plaintext",

+ 2 - 2
luminus/benchmark_config

@@ -4,7 +4,7 @@
     "default": {
       "setup_file": "setup",
       "json_url": "/luminus/json",
-      "db_url": "/luminus/db/1",
+      "db_url": "/luminus/db",
       "query_url": "/luminus/db/",
       "fortune_url": "/luminus/fortune",
       "port": 8080,
@@ -24,7 +24,7 @@
     },
     "raw": {
       "setup_file": "setup",
-      "db_url": "/luminus/dbraw/1",
+      "db_url": "/luminus/dbraw",
       "query_url": "/luminus/dbraw/",
       "port": 8080,
       "approach": "Realistic",

+ 1 - 1
luminus/hello/src/hello/views/templates/base.html

@@ -4,6 +4,6 @@
     <title>Fortunes</title>
   </head>
   <body>
-    {% block content %}
+    {% block content %}{% endblock %}
   </body>
 </html>