diff --git a/docs/connector-development/config-based/tutorial/0-getting-started.md b/docs/connector-development/config-based/tutorial/0-getting-started.md index 8c47d589ccc5..5a264a66c4a6 100644 --- a/docs/connector-development/config-based/tutorial/0-getting-started.md +++ b/docs/connector-development/config-based/tutorial/0-getting-started.md @@ -44,7 +44,6 @@ This can be done by signing up for the Free tier plan on [Exchange Rates Data AP - Python >= 3.9 - [Poetry](https://python-poetry.org/) - Docker must be running -- NodeJS - [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md#L1) CLI ## Next Steps diff --git a/docs/connector-development/tutorials/cdk-speedrun.md b/docs/connector-development/tutorials/cdk-speedrun.md index bb9f23ddf246..d9fc6bc82ffd 100644 --- a/docs/connector-development/tutorials/cdk-speedrun.md +++ b/docs/connector-development/tutorials/cdk-speedrun.md @@ -117,17 +117,17 @@ cd .. mkdir sample_files echo '{"pokemon_name": "pikachu"}' > sample_files/config.json echo '{"pokemon_name": "chikapu"}' > sample_files/invalid_config.json -python main.py check --config sample_files/config.json -python main.py check --config sample_files/invalid_config.json +poetry run source-python-http-example check --config sample_files/config.json +poetry run source-python-http-example check --config sample_files/invalid_config.json ``` Expected output: -```text -> python main.py check --config sample_files/config.json +```bash +> poetry run source-python-http-example check --config sample_files/config.json {"type": "CONNECTION_STATUS", "connectionStatus": {"status": "SUCCEEDED"}} -> python main.py check --config sample_files/invalid_config.json +> poetry run source-python-http-example check --config sample_files/invalid_config.json {"type": "CONNECTION_STATUS", "connectionStatus": {"status": "FAILED", "message": "'Input Pokemon chikapu is invalid. Please check your spelling our input a valid Pokemon.'"}} ```