소스 검색

H2O: Adjust the number of database connections in the cloud environment (#4371)

Anton Kirilov 6 년 전
부모
커밋
2c9bd34bd2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      frameworks/C/h2o/start-servers.sh

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

@@ -18,7 +18,7 @@ if [[ "$CPU_COUNT" -gt 16 ]]; then
 else
 	echo "Running h2o_app in the cloud environment."
 	USE_PROCESSES=false
-	DB_CONN=8
+	DB_CONN=5
 fi
 
 build_h2o_app()