Skip to content

Commit

Permalink
v0.27: sources permit empty config
Browse files Browse the repository at this point in the history
  • Loading branch information
unytics committed Jul 23, 2024
1 parent 40ff52c commit 78574b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airbyte_serverless/sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def add_argument(name, value):

needs_config = (action != 'spec')
if needs_config:
assert self.config, 'config attribute is not defined'
assert self.config is not None, 'config attribute is not defined'
command += add_argument('config', self.config)

needs_configured_catalog = (action == 'read')
Expand Down
2 changes: 1 addition & 1 deletion airbyte_serverless/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.26'
VERSION = '0.27'

0 comments on commit 78574b1

Please sign in to comment.