kaxil opened a new issue #13854: URL: https://github.com/apache/airflow/issues/13854
After https://github.com/apache/airflow/issues/13751 was fixed, the CI failed on integrations tests: ``` popenargs = (['kinit', '-kt', '/etc/airflow.keytab', 'airflow'],), kwargs = {} retcode = 1, cmd = ['kinit', '-kt', '/etc/airflow.keytab', 'airflow'] def check_call(*popenargs, **kwargs): """Run command with arguments. Wait for command to complete. If the exit code was zero then return, otherwise raise CalledProcessError. The CalledProcessError object will have the return code in the returncode attribute. The arguments are the same as for the call function. Example: check_call(["ls", "-l"]) """ retcode = call(*popenargs, **kwargs) if retcode: cmd = kwargs.get("args") if cmd is None: cmd = popenargs[0] > raise CalledProcessError(retcode, cmd) E subprocess.CalledProcessError: Command '['kinit', '-kt', '/etc/airflow.keytab', 'airflow']' returned non-zero exit status 1. ``` ``` =========================== short test summary info ============================ ERROR tests/cli/test_cli.py::TestWorkerServeLogs::test_serve_logs_on_worker_start ERROR tests/cli/test_cli.py::TestWorkerServeLogs::test_skip_serve_logs_on_worker_start ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_get_conn ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_get_lb_policy_invalid_policy ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_get_lb_policy_no_host_for_allow_list ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_get_lb_policy_with_args ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_get_lb_policy_with_no_args ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_record_exists_with_keyspace_from_cql ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_record_exists_with_keyspace_from_session ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_table_exists_with_keyspace_from_cql ERROR tests/contrib/hooks/test_cassandra_hook.py::TestCassandraHook::test_table_exists_with_keyspace_from_session ERROR tests/contrib/hooks/test_redis_hook.py::TestRedisHook::test_real_get_and_set ERROR tests/contrib/hooks/test_redis_hook.py::TestRedisHook::test_real_ping ERROR tests/contrib/operators/test_redis_publish_operator.py::TestRedisPublishOperator::test_execute_hello ERROR tests/contrib/sensors/test_mongo_sensor.py::TestMongoSensor::test_poke ERROR tests/contrib/sensors/test_redis_pub_sub_sensor.py::TestRedisPubSubSensor::test_poke_false ERROR tests/contrib/sensors/test_redis_pub_sub_sensor.py::TestRedisPubSubSensor::test_poke_true ERROR tests/contrib/sensors/test_redis_sensor.py::TestRedisSensor::test_poke ERROR tests/executors/test_celery_executor.py::TestCeleryExecutor::test_celery_integration_0_amqp_guest_guest_rabbitmq_5672 ERROR tests/executors/test_celery_executor.py::TestCeleryExecutor::test_celery_integration_1_redis_redis_6379_0 ERROR tests/executors/test_celery_executor.py::TestCeleryExecutor::test_error_sending_task ================ 3964 skipped, 3 warnings, 21 errors in 59.67s ================= ``` ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected]
