Skip to content

Commit

Permalink
FIX: source-file has a Typo in its metadata version (O instead of 0) (#…
Browse files Browse the repository at this point in the history
…25596)

* fix typo of o instead of zero in source-file version metadata

* Fix error message
  • Loading branch information
bnchrch authored Apr 27, 2023
1 parent 263a132 commit d4349f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def construct_registry_with_spec_from_registry(registry: dict, cached_specs: Out
else:
registry_with_specs["destinations"].append(entry_with_spec)
except KeyError:
raise MissingCachedSpecError(f"No cached spec found for {entry['dockerRepository']:{entry['dockerImageTag']}}")
raise MissingCachedSpecError(f"No cached spec found for {entry['dockerRepository']}:{entry['dockerImageTag']}")
return registry_with_specs


Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-file/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ data:
connectorSubtype: file
connectorType: source
definitionId: 778daa7c-feaf-4db6-96f3-70fd645acc77
dockerImageTag: 0.3.O
dockerImageTag: 0.3.0
dockerRepository: airbyte/source-file
githubIssueLabel: source-file
icon: file.svg
Expand Down

0 comments on commit d4349f1

Please sign in to comment.