Skip to content

Commit

Permalink
feat: pass better error messages when API times out (#75)
Browse files Browse the repository at this point in the history
* Modified setup.cfg to use alternate version of Python SDK.

* Updated SDK requirement.

* Updated changelog and version number prior to merging.
  • Loading branch information
ericf-firebolt authored Sep 8, 2022
1 parent aafc3bb commit 366471a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v.1.1.2

### Features

- dbt-firebolt now passes through more useful error messages on API timeouts.

### Under the hood

- dbt-firebolt now requires firebolt-sdk>=0.10.0.

## v.1.1.1

### Under the hood
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/firebolt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from dbt.adapters.firebolt.impl import FireboltAdapter
from dbt.include import firebolt

__version__ = '1.1.1'
__version__ = '1.1.2'

Plugin = AdapterPlugin(
adapter=FireboltAdapter,
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ project_urls =
packages = find_namespace:
install_requires =
dbt-core~=1.1
firebolt-sdk>=0.9.2
firebolt-sdk>=0.10.0
python_requires = >=3.7
include_package_data = True
package_dir =
Expand Down

0 comments on commit 366471a

Please sign in to comment.