airbytehq / airbytehq/airbyte-api-python-sdk

when executing stream_details = s.streams.get_stream_properties(req)

Aperta
#63 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub
Lingua principale
Python
Stelle
61
Fork
27
Merge medio
4m
PR unite (30g)
2

Descrizione

line 697, in unmarshal_json
raise AttributeError(
AttributeError: unable to unmarshal

reproduce -
install latest airbyte helm.
setup GITHUB and Snowflake connection

run this code -

```
from airbyte import Airbyte
from airbyte.connections import shared
from airbyte.models import errors, operations, shared
from airbyte.models.operations import ListConnectionsRequest


import airbyte
from airbyte.models import shared

s = Airbyte(server_url="http://127.0.0.1:8006/v1",
security=shared.Security(
basic_auth=shared.SchemeBasicAuth(
password="",
username="",
),
),)
r = s.connections.list_connections(operations.ListConnectionsRequest())
for connection_id in r.raw_response.json()['data']:
print(connection_id['connectionId'])
cr = s.connections.get_connection(operations.GetConnectionRequest(connection_id['connectionId']))
req = operations.GetStreamPropertiesRequest(
destination_id=cr.raw_response.json()['destinationId'],
source_id=cr.raw_response.json()['sourceId'],
ignore_cache=True,
)

stream_details = s.streams.get_stream_properties(req)

```

Guida per i contributori

Apri la guida per i contributori

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.