Browse Source

Merge pull request #1020 from methane/fix-pyramid

Fix pyramid install
Hamilton Turner 11 years ago
parent
commit
85d441a011

+ 2 - 2
frameworks/Python/pyramid/benchmark_config

@@ -9,7 +9,7 @@
       "fortune_url": "/fortunes",
       "update_url": "/updates?queries=",
       "plaintext_url": "/plaintext",
-      "port": 6543,
+      "port": 8080,
       "approach": "Realistic",
       "classification": "Fullstack",
       "database": "Postgres",
@@ -32,7 +32,7 @@
       "fortune_url": "/fortunes",
       "update_url": "/updates?queries=",
       "plaintext_url": "/plaintext",
-      "port": 6543,
+      "port": 8080,
       "approach": "Realistic",
       "classification": "Fullstack",
       "database": "Postgres",

+ 1 - 1
frameworks/Python/pyramid/development.ini

@@ -4,7 +4,7 @@
 ###
 
 [app:main]
-use = egg:FrameworkBenchmarks
+use = call:frameworkbenchmarks:main
 
 pyramid.reload_templates = false
 pyramid.debug_authorization = false

+ 1 - 1
frameworks/Python/pyramid/production.ini

@@ -4,7 +4,7 @@
 ###
 
 [app:main]
-use = egg:FrameworkBenchmarks
+use = call:frameworkbenchmarks:main
 
 pyramid.reload_templates = false
 pyramid.debug_authorization = false