瀏覽代碼

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

Keith R. Gustafson 11 年之前
父節點
當前提交
8d5fc163f9
共有 3 個文件被更改,包括 4 次插入4 次删除
  1. 1 1
      compojure/benchmark_config
  2. 2 2
      luminus/benchmark_config
  3. 1 1
      luminus/hello/src/hello/views/templates/base.html

+ 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>