feat: 出力件数を10000件にしてみる

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2023-08-24 18:05:52 +09:00
parent d1ec77ce08
commit bc8975dd83
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ AWS_REGION=ap-northeast-1
AUTHORIZE_ENDPOINT=oauth2/authorize AUTHORIZE_ENDPOINT=oauth2/authorize
TOKEN_ENDPOINT=oauth2/token TOKEN_ENDPOINT=oauth2/token
BIO_SEARCH_RESULT_MAX_COUNT=35000 BIO_SEARCH_RESULT_MAX_COUNT=35000
BIO_EXCEL_RESULT_MAX_COUNT=6500 BIO_EXCEL_RESULT_MAX_COUNT=10000
ULTMARC_SEARCH_RESULT_MAX_COUNT=500 ULTMARC_SEARCH_RESULT_MAX_COUNT=500
SESSION_EXPIRE_MINUTE=20 SESSION_EXPIRE_MINUTE=20
LOG_LEVEL=DEBUG LOG_LEVEL=DEBUG

View File

@ -20,7 +20,7 @@ DB_PASSWORD = os.environ['DB_PASSWORD']
DB_SCHEMA = os.environ['DB_SCHEMA'] DB_SCHEMA = os.environ['DB_SCHEMA']
BIO_SEARCH_RESULT_MAX_COUNT = int(os.environ.get('BIO_SEARCH_RESULT_MAX_COUNT', 35000)) BIO_SEARCH_RESULT_MAX_COUNT = int(os.environ.get('BIO_SEARCH_RESULT_MAX_COUNT', 35000))
BIO_EXCEL_RESULT_MAX_COUNT = int(os.environ.get('BIO_EXCEL_RESULT_MAX_COUNT', 6500)) BIO_EXCEL_RESULT_MAX_COUNT = int(os.environ.get('BIO_EXCEL_RESULT_MAX_COUNT', 10000))
ULTMARC_SEARCH_RESULT_MAX_COUNT = int(os.environ.get('ULTMARC_SEARCH_RESULT_MAX_COUNT', 500)) ULTMARC_SEARCH_RESULT_MAX_COUNT = int(os.environ.get('ULTMARC_SEARCH_RESULT_MAX_COUNT', 500))
SESSION_EXPIRE_MINUTE = int(os.environ['SESSION_EXPIRE_MINUTE']) SESSION_EXPIRE_MINUTE = int(os.environ['SESSION_EXPIRE_MINUTE'])

View File

@ -3,6 +3,6 @@ AWS_REGION=ap-northeast-1
AUTHORIZE_ENDPOINT=oauth2/authorize AUTHORIZE_ENDPOINT=oauth2/authorize
TOKEN_ENDPOINT=oauth2/token TOKEN_ENDPOINT=oauth2/token
BIO_SEARCH_RESULT_MAX_COUNT=35000 BIO_SEARCH_RESULT_MAX_COUNT=35000
BIO_EXCEL_RESULT_MAX_COUNT=6500 BIO_EXCEL_RESULT_MAX_COUNT=10000
SESSION_EXPIRE_MINUTE=20 SESSION_EXPIRE_MINUTE=20
ULTMARC_SEARCH_RESULT_MAX_COUNT=500 ULTMARC_SEARCH_RESULT_MAX_COUNT=500