potiuk commented on PR #35720: URL: https://github.com/apache/airflow/pull/35720#issuecomment-1817509724
Example failure: https://github.com/apache/airflow/actions/runs/6911063480/job/18805169413?pr=35694#step:5:749 ``` ________________________ TestLevelDBHook.test_exception ________________________ [gw3] linux -- Python 3.8.18 /usr/local/bin/python self = <tests.providers.google.leveldb.hooks.test_leveldb.TestLevelDBHook object at 0x7f450f040730> @mock.patch.dict("os.environ", AIRFLOW_CONN_LEVELDB_DEFAULT="test") def test_exception(self): """Test raising exception of hook in run method if we have unknown command in input""" hook = LevelDBHook(leveldb_conn_id="leveldb_default") > hook.get_conn(name="/tmp/testdb/", create_if_missing=True) tests/providers/google/leveldb/hooks/test_leveldb.py:99: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ airflow/providers/google/leveldb/hooks/leveldb.py:65: in get_conn self.db = plyvel.DB(name=name, create_if_missing=create_if_missing, **kwargs) plyvel/_plyvel.pyx:247: in plyvel._plyvel.DB.__init__ ??? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ??? E plyvel._plyvel.IOError: b'IO error: lock /tmp/testdb//LOCK: Resource temporarily unavailable' plyvel/_plyvel.pyx:88: IOError ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
