소스 검색

H2O: Increase the number of database connections (#4948)

This change affects the physical hardware environment.
Anton Kirilov 6 년 전
부모
커밋
696a27be90
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frameworks/C/h2o/h2o.sh

+ 1 - 1
frameworks/C/h2o/h2o.sh

@@ -28,7 +28,7 @@ fi
 # A hacky way to detect whether we are running in the physical hardware or the cloud environment.
 # A hacky way to detect whether we are running in the physical hardware or the cloud environment.
 if [[ "$CPU_COUNT" -gt 16 ]]; then
 if [[ "$CPU_COUNT" -gt 16 ]]; then
 	echo "Running h2o_app in the physical hardware environment."
 	echo "Running h2o_app in the physical hardware environment."
-	DB_CONN=3
+	DB_CONN=4
 else
 else
 	echo "Running h2o_app in the cloud environment."
 	echo "Running h2o_app in the cloud environment."
 	DB_CONN=5
 	DB_CONN=5