diff --git a/CHANGELOG.md b/CHANGELOG.md index a94fd2c44be3fff1ff48e5722ffe16c094e6e20b..739fa74ce8968b2746c98d6d26adfd14e1bead40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.1.3] - ### Added -- +- dev: Session support. Same connection is used multiple time. ### Fixed diff --git a/bitia/__main__.py b/bitia/__main__.py index 5862c29f114eb06314b6bc6bfee2d1ba439f14ca..68aeb8d5eb7d9c0805052cc1c259b1e6b9e6d687 100644 --- a/bitia/__main__.py +++ b/bitia/__main__.py @@ -87,6 +87,7 @@ def submit_pipeline(user_input: str, server: str = DEFAULT_SERVER): """ pipeline_zip = user_input_to_pipeline(user_input) containers = submit_job(pipeline_zip, server=server) + logger.info(f" Got containers {containers}") return containers