From 9d5f2c8cea1e2321a69348590093f04a8702f2ca Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Wed, 25 Mar 2026 13:26:11 -0400 Subject: [PATCH] Version update --- app/main.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/main.py b/app/main.py index ec3a1e4..0eb6737 100644 --- a/app/main.py +++ b/app/main.py @@ -26,7 +26,7 @@ from app.db_sql import sql_select, reset_redis, reconnect_db from app.lib_config_v3 import bootstrap_db_config, validate_critical_config -print('### **** *** ** * The Aether API v4 using FastAPI is loading... * ** *** **** ###') +print('### **** *** ** * The Aether API v3.0 using FastAPI is loading... * ** *** **** ###') log = logging.getLogger(__name__) @@ -42,7 +42,7 @@ async def lifespan(app: FastAPI): """ # 1. Initialize Logging early but safely setup_logging(config.settings) - log.info('### **** *** ** * Aether API v4 using FastAPI - Startup Lifespan Initiated * ** *** **** ###') + log.info('### **** *** ** * Aether API v3.0 using FastAPI - Startup Lifespan Initiated * ** *** **** ###') # 2. Bootstrapping Configuration from DB with robust error handling log.info("Bootstrapping Configuration...") @@ -82,21 +82,21 @@ async def lifespan(app: FastAPI): # 3. Final validation of critical infrastructure validate_critical_config(config.settings) - log.info('### **** *** ** * Aether API v4 using FastAPI - Startup Sequence Complete * ** *** **** ###') + log.info('### **** *** ** * Aether API v3.0 using FastAPI - Startup Sequence Complete * ** *** **** ###') yield # Shutdown logic - log.info('### **** *** ** * Aether API v4 using FastAPI - Shutdown Lifespan Initiated * ** *** **** ###') + log.info('### **** *** ** * Aether API v3.0 using FastAPI - Shutdown Lifespan Initiated * ** *** **** ###') log.info('The Aether FastAPI API is shutting down...') -print('### **** *** ** * Aether API v4 using FastAPI - About to try FastAPI() while loading... * ** *** **** ###') +print('### **** *** ** * Aether API v3.0 using FastAPI - About to try FastAPI() while loading... * ** *** **** ###') app = FastAPI( # debug = True, title = 'Aether API', - description = 'One Sky IT\'s Aether API v4 using FastAPI.', - version = '3.00.01', + description = 'One Sky IT\'s Aether API v3.0 using FastAPI.', + version = '3.00.03', operationsSorter = 'method', lifespan = lifespan, )