From a658f5af89ed69a643c82528e0ffbf99ed443eab Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Fri, 22 Sep 2023 14:15:55 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(conftest.py):=20comment=20?= =?UTF-8?q?out=20unused=20monkeypatching=20of=20USE=5FCELERY=20variable=20?= =?UTF-8?q?to=20improve=20code=20readability=20and=20maintainability?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index 0109845af..b767b602d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -106,7 +106,7 @@ def distributed_client_fixture(session: Session, monkeypatch, distributed_env): # monkeypatch langflow.services.task.manager.USE_CELERY to True monkeypatch.setenv("LANGFLOW_AUTO_LOGIN", False) - monkeypatch.setattr(manager, "USE_CELERY", True) + # monkeypatch.setattr(manager, "USE_CELERY", True) monkeypatch.setattr( celery_app, "celery_app", celery_app.make_celery("langflow", Config) )