소스 검색

Merge pull request #1020 from methane/fix-pyramid

Fix pyramid install
Hamilton Turner 11 년 전
부모
커밋
85d441a011
3개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 2
      frameworks/Python/pyramid/benchmark_config
  2. 1 1
      frameworks/Python/pyramid/development.ini
  3. 1 1
      frameworks/Python/pyramid/production.ini

+ 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