Pieter Noordhuis
Pieter Noordhuis
This uses https://github.com/aws-actions/stale-issue-cleanup which in turn is built on https://github.com/actions/stale. The latter appears more active and seems to have implemented the features that prompted the former to be created.
What specifically is blocking the TF exporter from exporting this? The configuration is a string/string map. The workspace APIs will allow the `/Workspace` prefix to all its paths pretty soon....
This happens because we still use a default `workspace.root_path` equal to `/Users//.bundle/...`. The corresponding POSIX path for the FUSE mount on DBR is `/Workspace/Users//.bundle/...`. This is why we need to...
Thanks for raising this. Can you elaborate on how you would want to factor your configuration to warrant different configuration files per target? Most (if not all) specialization should be...
Thanks for reporting. It seems something in your setup is adding a double quote to the line producing an error. Our version of `__init__.py` looks like this: https://github.com/databricks/databricks-sdk-py/blob/986d1d98d4fea66c99d0ea6ccfc64b9faa1115db/databricks/__init__.py#L3 The error...
Thanks for chiming in, @travischambers. I now notice how the imports in the traces are different. I see: * `from databricks import sql as dbsql` * `from databricks.sqlalchemy import dialect...
Alright, so it turns out that: * `__init__.py` in this repository is 260 bytes * `__init__.py` in https://github.com/databricks/databricks-sql-python is 295 bytes The contents of the latter, after 260 bytes is:...
Thanks for getting back! Yeah, as long as the SDK and SQL connector packages are being updated, and these fixes are merged and released, the issue should just stop happening...
Are similar PRs for the other SDKs tracked some place?
Why not retry on all 429s? I get the other bits, but for this issue, if we simply retry on all 429s, we fix this particular error, as well as...