Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmytro Rezchykov committed Aug 17, 2021
1 parent c019bce commit e3d5279
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion airbyte-cdk/python/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## 0.1.10
Add checking specified config againt spec for read, write, check and ddiscover commands
Add checking specified config againt spec for read, write, check and discover commands

##0.1.9
remove this line after rebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,6 @@ def check_config_against_spec(config: Mapping[str, Any], spec: ConnectorSpecific
spec_schema = spec.connectionSpecification
try:
validate(instance=config, schema=spec_schema)
return None
return
except ValidationError as validation_error:
return "Config validation error: " + validation_error.message

0 comments on commit e3d5279

Please sign in to comment.