From de5c91e9841f0e85123bb517d11ab9e7c226dfa8 Mon Sep 17 00:00:00 2001 From: MACLSH Date: Wed, 9 Nov 2022 15:25:25 +0900 Subject: [PATCH] Fix: comment out azure-servicebus in requirements.txt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - airflow webserver, ModuleNotFoundError 발생 - | No module named 'azure.servicebus' - requirements.txt 에 모듈 정보를 추가 했으나 설치 안되어 있음 - `azure-servicebus`는 `uamqp` 모듈에 의존하나 `uamqp`는 ARM 아키텍쳐를 지원하지 않아 설치가 안된것으로 추정 - 참고 https://github.com/apache/airflow/pull/24635 - azure를 사용하지 않아 문구는 무시하고 작업하는 것으로 종결 --- requirements.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/requirements.txt b/requirements.txt index ea967eb..cb04cb5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -109,6 +109,4 @@ Werkzeug==2.2.2 wrapt==1.14.1 WTForms==3.0.1 zipp==3.10.0 -# FIXME azure-servicebus 의존성 수전 -# ModuleNotFoundError: No module named 'azure.servicebus' -azure-servicebus==7.8.1 \ No newline at end of file +# azure-servicebus==7.8.1 \ No newline at end of file