When I was about to modify the name of the knowledge base after adding it, the web page displayed an internal server error #10454

Closed
opened 2026-02-21 18:47:09 -05:00 by yindo · 0 comments
Owner

Originally created by @xiangHannibal on GitHub (Mar 11, 2025).

Self Checks

  • This is only for bug report, if you would like to ask a question, please head to Discussions.
  • I have searched for existing issues search for existing issues, including closed ones.
  • I confirm that I am using English to submit this report (我已阅读并同意 Language Policy).
  • [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:)
  • Please do not modify this template :) and fill in all the required fields.

Dify version

1.0.1

Cloud or Self Hosted

Self Hosted (Docker)

Steps to reproduce

When I tried to modify the name of the knowledge base after adding it, the web page displayed an internal server error

Image

and the backend log reported the following error

[GIN] 2025/03/12 - 02:00:22 | 200 |     422.833µs |      172.18.0.9 | GET      "/plugin/5ec12af7-c8c0-49e5-81ca-8f0159bdd040/management/models?page=1&page_size=256"
db-1             | 2025-03-12 02:00:22.608 UTC [169] ERROR:  could not open file "base/16384/17272": No such file or directory
db-1             | 2025-03-12 02:00:22.608 UTC [169] STATEMENT:  SELECT tags.id AS tags_id, tags.tenant_id AS tags_tenant_id, tags.type AS tags_type, tags.name AS tags_name, tags.created_by AS tags_created_by, tags.created_at AS tags_created_at 
db-1             | 	FROM tags JOIN tag_bindings ON tags.id = tag_bindings.tag_id 
db-1             | 	WHERE tag_bindings.target_id = 'ba8ff5d1-7ebc-423f-89f1-62c38799fa7c'::UUID AND tag_bindings.tenant_id = '5ec12af7-c8c0-49e5-81ca-8f0159bdd040'::UUID AND tags.tenant_id = '5ec12af7-c8c0-49e5-81ca-8f0159bdd040'::UUID AND tags.type = 'knowledge'
api-1            | 2025-03-12 02:00:22.608 ERROR [Dummy-18] [app.py:875] - Exception on /console/api/datasets/ba8ff5d1-7ebc-423f-89f1-62c38799fa7c [PATCH]
api-1            | Traceback (most recent call last):
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1967, in _exec_single_context
nginx-1          | 172.18.0.1 - - [12/Mar/2025:02:00:22 +0000] "PATCH /console/api/datasets/ba8ff5d1-7ebc-423f-89f1-62c38799fa7c HTTP/1.1" 500 56 "http://localhost:8183/datasets/ba8ff5d1-7ebc-423f-89f1-62c38799fa7c/settings" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36" "-"
api-1            |     self.dialect.do_execute(
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/default.py", line 941, in do_execute
api-1            |     cursor.execute(statement, parameters)
api-1            | psycopg2.errors.UndefinedFile: could not open file "base/16384/17272": No such file or directory
api-1            | 
api-1            | 
api-1            | The above exception was the direct cause of the following exception:
api-1            | 
api-1            | Traceback (most recent call last):
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask/app.py", line 917, in full_dispatch_request
api-1            |     rv = self.dispatch_request()
api-1            |          ^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask/app.py", line 902, in dispatch_request
api-1            |     return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)  # type: ignore[no-any-return]
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 489, in wrapper
api-1            |     resp = resource(*args, **kwargs)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask/views.py", line 110, in view
api-1            |     return current_app.ensure_sync(self.dispatch_request)(**kwargs)  # type: ignore[no-any-return]
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 604, in dispatch_request
api-1            |     resp = meth(*args, **kwargs)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/controllers/console/wraps.py", line 187, in decorated
api-1            |     return view(*args, **kwargs)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/libs/login.py", line 94, in decorated_view
api-1            |     return current_app.ensure_sync(func)(*args, **kwargs)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/controllers/console/wraps.py", line 30, in decorated
api-1            |     return view(*args, **kwargs)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/controllers/console/wraps.py", line 148, in decorated
api-1            |     return view(*args, **kwargs)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/controllers/console/datasets/datasets.py", line 305, in patch
api-1            |     result_data = marshal(dataset, dataset_detail_fields)
api-1            |                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 657, in marshal
api-1            |     return OrderedDict([(envelope, OrderedDict(items))]) if envelope else OrderedDict(items)
api-1            |                                                                           ^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 655, in <genexpr>
api-1            |     else make(v).output(k, data))
api-1            |          ^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 194, in output
api-1            |     value = get_value(key if self.attribute is None else self.attribute, data)
api-1            |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 40, in get_value
api-1            |     return _get_value_for_keys(key.split('.'), obj, default)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 45, in _get_value_for_keys
api-1            |     return _get_value_for_key(keys[0], obj, default)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 57, in _get_value_for_key
api-1            |     return getattr(obj, key, default)
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/models/dataset.py", line 172, in tags
api-1            |     .all()
api-1            |      ^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/query.py", line 2673, in all
api-1            |     return self._iter().all()  # type: ignore
api-1            |            ^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/query.py", line 2827, in _iter
api-1            |     result: Union[ScalarResult[_T], Result[_T]] = self.session.execute(
api-1            |                                                   ^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/session.py", line 2362, in execute
api-1            |     return self._execute_internal(
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/session.py", line 2247, in _execute_internal
api-1            |     result: Result[Any] = compile_state_cls.orm_execute_statement(
api-1            |                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/context.py", line 305, in orm_execute_statement
api-1            |     result = conn.execute(
api-1            |              ^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1418, in execute
api-1            |     return meth(
api-1            |            ^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/sql/elements.py", line 515, in _execute_on_connection
api-1            |     return connection._execute_clauseelement(
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1640, in _execute_clauseelement
api-1            |     ret = self._execute_context(
api-1            |           ^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1846, in _execute_context
api-1            |     return self._exec_single_context(
api-1            |            ^^^^^^^^^^^^^^^^^^^^^^^^^^
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1986, in _exec_single_context
api-1            |     self._handle_dbapi_exception(
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 2355, in _handle_dbapi_exception
api-1            |     raise sqlalchemy_exception.with_traceback(exc_info[2]) from e
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1967, in _exec_single_context
api-1            |     self.dialect.do_execute(
api-1            |   File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/default.py", line 941, in do_execute
api-1            |     cursor.execute(statement, parameters)
api-1            | sqlalchemy.exc.OperationalError: (psycopg2.errors.UndefinedFile) could not open file "base/16384/17272": No such file or directory
api-1            | 
api-1            | [SQL: SELECT tags.id AS tags_id, tags.tenant_id AS tags_tenant_id, tags.type AS tags_type, tags.name AS tags_name, tags.created_by AS tags_created_by, tags.created_at AS tags_created_at 
api-1            | FROM tags JOIN tag_bindings ON tags.id = tag_bindings.tag_id 
api-1            | WHERE tag_bindings.target_id = %(target_id_1)s::UUID AND tag_bindings.tenant_id = %(tenant_id_1)s::UUID AND tags.tenant_id = %(tenant_id_2)s::UUID AND tags.type = %(type_1)s]
api-1            | [parameters: {'target_id_1': 'ba8ff5d1-7ebc-423f-89f1-62c38799fa7c', 'tenant_id_1': '5ec12af7-c8c0-49e5-81ca-8f0159bdd040', 'tenant_id_2': '5ec12af7-c8c0-49e5-81ca-8f0159bdd040', 'type_1': 'knowledge'}]
api-1            | (Background on this error at: https://sqlalche.me/e/20/e3q8)

✔️ Expected Behavior

I hope to complete the modification of the knowledge base name and description

Actual Behavior

Actually, the web page is reporting an error: internal server error

Originally created by @xiangHannibal on GitHub (Mar 11, 2025). ### Self Checks - [x] This is only for bug report, if you would like to ask a question, please head to [Discussions](https://github.com/langgenius/dify/discussions/categories/general). - [x] I have searched for existing issues [search for existing issues](https://github.com/langgenius/dify/issues), including closed ones. - [x] I confirm that I am using English to submit this report (我已阅读并同意 [Language Policy](https://github.com/langgenius/dify/issues/1542)). - [x] [FOR CHINESE USERS] 请务必使用英文提交 Issue,否则会被关闭。谢谢!:) - [x] Please do not modify this template :) and fill in all the required fields. ### Dify version 1.0.1 ### Cloud or Self Hosted Self Hosted (Docker) ### Steps to reproduce When I tried to modify the name of the knowledge base after adding it, the web page displayed an internal server error ![Image](https://github.com/user-attachments/assets/46fa74fd-7389-49bd-9e69-5952aa3eb8a6) and the backend log reported the following error ``` [GIN] 2025/03/12 - 02:00:22 | 200 | 422.833µs | 172.18.0.9 | GET "/plugin/5ec12af7-c8c0-49e5-81ca-8f0159bdd040/management/models?page=1&page_size=256" db-1 | 2025-03-12 02:00:22.608 UTC [169] ERROR: could not open file "base/16384/17272": No such file or directory db-1 | 2025-03-12 02:00:22.608 UTC [169] STATEMENT: SELECT tags.id AS tags_id, tags.tenant_id AS tags_tenant_id, tags.type AS tags_type, tags.name AS tags_name, tags.created_by AS tags_created_by, tags.created_at AS tags_created_at db-1 | FROM tags JOIN tag_bindings ON tags.id = tag_bindings.tag_id db-1 | WHERE tag_bindings.target_id = 'ba8ff5d1-7ebc-423f-89f1-62c38799fa7c'::UUID AND tag_bindings.tenant_id = '5ec12af7-c8c0-49e5-81ca-8f0159bdd040'::UUID AND tags.tenant_id = '5ec12af7-c8c0-49e5-81ca-8f0159bdd040'::UUID AND tags.type = 'knowledge' api-1 | 2025-03-12 02:00:22.608 ERROR [Dummy-18] [app.py:875] - Exception on /console/api/datasets/ba8ff5d1-7ebc-423f-89f1-62c38799fa7c [PATCH] api-1 | Traceback (most recent call last): api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1967, in _exec_single_context nginx-1 | 172.18.0.1 - - [12/Mar/2025:02:00:22 +0000] "PATCH /console/api/datasets/ba8ff5d1-7ebc-423f-89f1-62c38799fa7c HTTP/1.1" 500 56 "http://localhost:8183/datasets/ba8ff5d1-7ebc-423f-89f1-62c38799fa7c/settings" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36" "-" api-1 | self.dialect.do_execute( api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/default.py", line 941, in do_execute api-1 | cursor.execute(statement, parameters) api-1 | psycopg2.errors.UndefinedFile: could not open file "base/16384/17272": No such file or directory api-1 | api-1 | api-1 | The above exception was the direct cause of the following exception: api-1 | api-1 | Traceback (most recent call last): api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask/app.py", line 917, in full_dispatch_request api-1 | rv = self.dispatch_request() api-1 | ^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask/app.py", line 902, in dispatch_request api-1 | return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) # type: ignore[no-any-return] api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 489, in wrapper api-1 | resp = resource(*args, **kwargs) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask/views.py", line 110, in view api-1 | return current_app.ensure_sync(self.dispatch_request)(**kwargs) # type: ignore[no-any-return] api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 604, in dispatch_request api-1 | resp = meth(*args, **kwargs) api-1 | ^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/controllers/console/wraps.py", line 187, in decorated api-1 | return view(*args, **kwargs) api-1 | ^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/libs/login.py", line 94, in decorated_view api-1 | return current_app.ensure_sync(func)(*args, **kwargs) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/controllers/console/wraps.py", line 30, in decorated api-1 | return view(*args, **kwargs) api-1 | ^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/controllers/console/wraps.py", line 148, in decorated api-1 | return view(*args, **kwargs) api-1 | ^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/controllers/console/datasets/datasets.py", line 305, in patch api-1 | result_data = marshal(dataset, dataset_detail_fields) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 657, in marshal api-1 | return OrderedDict([(envelope, OrderedDict(items))]) if envelope else OrderedDict(items) api-1 | ^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/__init__.py", line 655, in <genexpr> api-1 | else make(v).output(k, data)) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 194, in output api-1 | value = get_value(key if self.attribute is None else self.attribute, data) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 40, in get_value api-1 | return _get_value_for_keys(key.split('.'), obj, default) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 45, in _get_value_for_keys api-1 | return _get_value_for_key(keys[0], obj, default) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/flask_restful/fields.py", line 57, in _get_value_for_key api-1 | return getattr(obj, key, default) api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/models/dataset.py", line 172, in tags api-1 | .all() api-1 | ^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/query.py", line 2673, in all api-1 | return self._iter().all() # type: ignore api-1 | ^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/query.py", line 2827, in _iter api-1 | result: Union[ScalarResult[_T], Result[_T]] = self.session.execute( api-1 | ^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/session.py", line 2362, in execute api-1 | return self._execute_internal( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/session.py", line 2247, in _execute_internal api-1 | result: Result[Any] = compile_state_cls.orm_execute_statement( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/orm/context.py", line 305, in orm_execute_statement api-1 | result = conn.execute( api-1 | ^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1418, in execute api-1 | return meth( api-1 | ^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/sql/elements.py", line 515, in _execute_on_connection api-1 | return connection._execute_clauseelement( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1640, in _execute_clauseelement api-1 | ret = self._execute_context( api-1 | ^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1846, in _execute_context api-1 | return self._exec_single_context( api-1 | ^^^^^^^^^^^^^^^^^^^^^^^^^^ api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1986, in _exec_single_context api-1 | self._handle_dbapi_exception( api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 2355, in _handle_dbapi_exception api-1 | raise sqlalchemy_exception.with_traceback(exc_info[2]) from e api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/base.py", line 1967, in _exec_single_context api-1 | self.dialect.do_execute( api-1 | File "/app/api/.venv/lib/python3.12/site-packages/sqlalchemy/engine/default.py", line 941, in do_execute api-1 | cursor.execute(statement, parameters) api-1 | sqlalchemy.exc.OperationalError: (psycopg2.errors.UndefinedFile) could not open file "base/16384/17272": No such file or directory api-1 | api-1 | [SQL: SELECT tags.id AS tags_id, tags.tenant_id AS tags_tenant_id, tags.type AS tags_type, tags.name AS tags_name, tags.created_by AS tags_created_by, tags.created_at AS tags_created_at api-1 | FROM tags JOIN tag_bindings ON tags.id = tag_bindings.tag_id api-1 | WHERE tag_bindings.target_id = %(target_id_1)s::UUID AND tag_bindings.tenant_id = %(tenant_id_1)s::UUID AND tags.tenant_id = %(tenant_id_2)s::UUID AND tags.type = %(type_1)s] api-1 | [parameters: {'target_id_1': 'ba8ff5d1-7ebc-423f-89f1-62c38799fa7c', 'tenant_id_1': '5ec12af7-c8c0-49e5-81ca-8f0159bdd040', 'tenant_id_2': '5ec12af7-c8c0-49e5-81ca-8f0159bdd040', 'type_1': 'knowledge'}] api-1 | (Background on this error at: https://sqlalche.me/e/20/e3q8) ``` ### ✔️ Expected Behavior I hope to complete the modification of the knowledge base name and description ### ❌ Actual Behavior Actually, the web page is reporting an error: internal server error
yindo added the 🐞 bug label 2026-02-21 18:47:09 -05:00
yindo closed this issue 2026-02-21 18:47:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langgenius/dify#10454