From b48b8ea06d62788523c49aa56779fe4709116b3f Mon Sep 17 00:00:00 2001
From: Timothe Jost <timothe.jost@wanadoo.fr>
Date: Thu, 28 Mar 2024 02:48:37 +0100
Subject: [PATCH] updating success message at startup

---
 src/pypelines/__init__.py     | 2 +-
 src/pypelines/celery_tasks.py | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/pypelines/__init__.py b/src/pypelines/__init__.py
index 369e013..528d977 100644
--- a/src/pypelines/__init__.py
+++ b/src/pypelines/__init__.py
@@ -1,4 +1,4 @@
-__version__ = "0.0.38"
+__version__ = "0.0.39"
 
 from . import loggs
 from .pipes import *
diff --git a/src/pypelines/celery_tasks.py b/src/pypelines/celery_tasks.py
index b11b436..6095c0a 100644
--- a/src/pypelines/celery_tasks.py
+++ b/src/pypelines/celery_tasks.py
@@ -398,4 +398,6 @@ def create_celery_app(conf_path, app_name="pypelines", v_host=None) -> "Celery |
     app.register_task(handshake)
     app.register_task(tasks_infos)
 
+    logger.info(f"The celery app {app_name} was created successfully.")
+
     return app
-- 
GitLab