We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
validate
1 parent f2529a6 commit ccc5c6aCopy full SHA for ccc5c6a
airbyte/cli.py
@@ -262,12 +262,7 @@ def _resolve_destination_job(
262
config: The path to a configuration file for the named source or destination.
263
pip_url: Optional. A location from which to install the connector.
264
"""
265
- if not config:
266
- raise PyAirbyteInputError(
267
- message="No configuration found.",
268
- )
269
-
270
- config_dict = _resolve_config(config)
+ config_dict = _resolve_config(config) if config else None
271
272
if destination and (destination.startswith(".") or "/" in destination):
273
# Treat the destination as a path.
0 commit comments