maciejmochol opened a new issue, #61:
URL: https://github.com/apache/airflow-client-python/issues/61
Hello,
Version 2.5.0 of the client library stopped generating Authorization header
when sending HTTP requests to Airflow.
I did some debug of the code and I can see that eg. for ConfigApi, a code
that previously looked like this:
```
class ConfigApi(object):
"""NOTE: This class is auto generated by OpenAPI Generator
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient()
self.api_client = api_client
self.get_config_endpoint = _Endpoint(
settings={
'response_type': (Config,),
'auth': [
'Basic',
'Kerberos'
],
```
now looks like this
```
class ConfigApi(object):
"""NOTE: This class is auto generated by OpenAPI Generator
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""
def __init__(self, api_client=None):
if api_client is None:
api_client = ApiClient()
self.api_client = api_client
self.get_config_endpoint = _Endpoint(
settings={
'response_type': (Config,),
'auth': [],
```
Are we doing something wrong?
--
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]