diff --git a/README.md b/README.md index a929268..f336a5d 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ bizon run config.yml Backend is the interface used by Bizon to store its state. It can be configured in the `backend` section of the configuration file. The following backends are supported: - `sqlite`: In-memory SQLite database, useful for testing and development. -- `biguquery`: Google BigQuery backend, perfect for light setup & production. +- `bigquery`: Google BigQuery backend, perfect for light setup & production. - `postgres`: PostgreSQL backend, for production use and frequent cursor updates. ## Queue configuration diff --git a/bizon/connectors/sources/kafka/tests/kafka_pipeline.py b/bizon/connectors/sources/kafka/tests/kafka_pipeline.py index 86a144e..d112577 100644 --- a/bizon/connectors/sources/kafka/tests/kafka_pipeline.py +++ b/bizon/connectors/sources/kafka/tests/kafka_pipeline.py @@ -4,6 +4,6 @@ if __name__ == "__main__": runner = RunnerFactory.create_from_yaml( - filepath=os.path.abspath("bizon/sources/kafka/config/kafka_teams_users.yml") + filepath=os.path.abspath("bizon/connectors/sources/kafka/config/kafka.example.yml") ) runner.run()