Преглед изворни кода

enlarge max file number per user limit (#373)

### What problem does this PR solve?

Issue link:#370

### Type of change

- [x] Refactoring
tags/v0.2.0
KevinHuSh пре 1 година
родитељ
комит
c344486aa0
No account linked to committer's email address
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      api/apps/document_app.py

+ 1
- 1
api/apps/document_app.py Прегледај датотеку

@@ -57,7 +57,7 @@ def upload():
if not e:
return get_data_error_result(
retmsg="Can't find this knowledgebase!")
if DocumentService.get_doc_count(kb.tenant_id) >= 128:
if DocumentService.get_doc_count(kb.tenant_id) >= os.environ.get('MAX_FILE_NUM_PER_USER', 8192):
return get_data_error_result(
retmsg="Exceed the maximum file number of a free user!")

Loading…
Откажи
Сачувај