Hello guys, How's it going? I hope all is well on your end. It's my first time using meltano, and also my first time on this slack channel! and I'm trying to connect to an oracle database. I'm currently having an issue but I'm not sure why.
I get: "Separator is found, but chunk is longer than limit".
Separator is found, but chunk is longer than limit
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /usr/lib/python3.10/asyncio/streams.py:524 in readline │
│ │
│ 521 │ │ sep = b'\n' │
│ 522 │ │ seplen = len(sep) │
│ 523 │ │ try: │
│ ❱ 524 │ │ │ line = await self.readuntil(sep) │
│ 525 │ │ except exceptions.IncompleteReadError as e: │
│ 526 │ │ │ return e.partial │
│ 527 │ │ except exceptions.LimitOverrunError as e: │
│ │
│ /usr/lib/python3.10/asyncio/streams.py:619 in readuntil │
│ │
│ 616 │ │ │ await self._wait_for_data('readuntil') │
│ 617 │ │ │
│ 618 │ │ if isep > self._limit: │
│ ❱ 619 │ │ │ raise exceptions.LimitOverrunError( │
│ 620 │ │ │ │ 'Separator is found, but chunk is longer than limit', isep) │
│ 621 │ │ │
│ 622 │ │ chunk = self._buffer[:isep + seplen] │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
I'd appreciate any sort of feedback and support. Thank you in advance!