diff --git a/app.log b/app.log index 7d86856..96481c6 100644 --- a/app.log +++ b/app.log @@ -572,3 +572,22 @@ Help: https://docs.oracle.com/error-help/db/ora-00936/ 2025-09-10 11:31:18,552 - INFO - - http://127.0.0.1:8000 2025-09-10 11:31:18,553 - INFO - - http://172.25.0.2:8000 2025-09-10 11:31:18,554 - INFO - Pipeline initialized successfully +2025-09-19 11:27:20,722 - INFO - Initializing pipeline... +2025-09-19 11:27:20,724 - INFO - [2025-09-19 11:27:20] Detecting salary... +2025-09-19 11:27:20,724 - INFO - Started autonomous salary detection loop. +2025-09-19 11:27:20,750 - INFO - Server running on hostname: 0b21809edf52 +2025-09-19 11:27:20,752 - INFO - Server IP address: 172.25.0.2 +2025-09-19 11:27:20,753 - INFO - Server is accessible at: +2025-09-19 11:27:20,759 - INFO - - http://localhost:8000 +2025-09-19 11:27:20,761 - INFO - - http://127.0.0.1:8000 +2025-09-19 11:27:20,766 - INFO - - http://172.25.0.2:8000 +2025-09-19 11:27:20,771 - INFO - Pipeline initialized successfully +2025-09-19 11:27:24,622 - INFO - POST http://www.simbrellang.net:5000/autocall/analytic-salary-detect status: 200, response: { + "data": [], + "error": {}, + "message": "AutoCall Add Salary Successful", + "status": true, + "statusCode": 200 +} + +2025-09-19 11:27:24,628 - INFO - [2025-09-19 11:27:24] Salary detection complete diff --git a/app/models/account.py b/app/models/account.py index 2198dd3..2f08f72 100644 --- a/app/models/account.py +++ b/app/models/account.py @@ -1,4 +1,3 @@ -from sqlalchemy import Column, Integer, String, Date, Numeric, CHAR from app.extensions import db diff --git a/app/models/simbrella_customer.py b/app/models/simbrella_customer.py index d8a6659..2e16424 100644 --- a/app/models/simbrella_customer.py +++ b/app/models/simbrella_customer.py @@ -1,4 +1,3 @@ -from sqlalchemy import Column, Integer, String, Date, Numeric, CHAR from app.extensions import db class SimbrellaCustomer(db.Model): diff --git a/app/models/transaction.py b/app/models/transaction.py index f5c47ba..f2c1de0 100644 --- a/app/models/transaction.py +++ b/app/models/transaction.py @@ -1,4 +1,3 @@ -from sqlalchemy import Column, Integer, String, Date, Numeric, CHAR from app.extensions import db diff --git a/app/models/transaction_stg.py b/app/models/transaction_stg.py index 1bf02a5..9fa1939 100644 --- a/app/models/transaction_stg.py +++ b/app/models/transaction_stg.py @@ -1,4 +1,3 @@ -from sqlalchemy import Column, Integer, String, Date, Numeric, CHAR from app.extensions import db