({ident})")
+
+ def validate(self, html_content):
+ # Allow Jinja2 template tags to pass through, but we might have issues if they contain divs
+ # For this specific case, we assume simple Jinja usage that doesn't split divs across blocks strangely
+ self.feed(html_content)
+
+ if self.stack:
+ for pos, ident in self.stack:
+ self.errors.append(f"Unclosed
starting at {pos}")
+
+ return self.errors
+
+# Read the file
+with open(r"d:\Code\iDRAC_Info\idrac_info\backend\templates\index.html", "r", encoding="utf-8") as f:
+ content = f.read()
+
+validator = DivValidator()
+errors = validator.validate(content)
+
+if errors:
+ print("Found HTML Structure Errors:")
+ for error in errors:
+ print(error)
+else:
+ print("No div nesting errors found.")
diff --git a/check_telegram.py b/check_telegram.py
deleted file mode 100644
index 2dbf2e5..0000000
--- a/check_telegram.py
+++ /dev/null
@@ -1,10 +0,0 @@
-import sys
-try:
- import telegram
- print(f"Telegram library found. Version: {telegram.__version__}")
- from telegram import Bot
- print("Bot class imported successfully.")
-except ImportError as e:
- print(f"ImportError: {e}")
-except Exception as e:
- print(f"Error during import: {e}")
diff --git a/config.py b/config.py
index ae03ee6..e21aa73 100644
--- a/config.py
+++ b/config.py
@@ -17,18 +17,22 @@ INSTANCE_DIR = BASE_DIR / "backend" / "instance"
INSTANCE_DIR.mkdir(parents=True, exist_ok=True)
# data/ 하위 보조 디렉토리
-(DATA_DIR / "logs").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "uploads").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "temp_zips").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "xml").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "system" / "logs").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "system" / "backup").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "system" / "archive").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "system" / "mac_backup").mkdir(parents=True, exist_ok=True)
+
+(DATA_DIR / "temp" / "uploads").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "temp" / "zips").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "temp" / "staging").mkdir(parents=True, exist_ok=True)
+
+(DATA_DIR / "repository" / "xml").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "repository" / "mac").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "repository" / "guid_file").mkdir(parents=True, exist_ok=True)
+(DATA_DIR / "repository" / "gpu_serial").mkdir(parents=True, exist_ok=True)
+
(DATA_DIR / "scripts").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "idrac_info").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "mac").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "guid_file").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "gpu_serial").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "mac_backup").mkdir(parents=True, exist_ok=True)
(DATA_DIR / "server_list").mkdir(parents=True, exist_ok=True)
-(DATA_DIR / "temp_ip").mkdir(parents=True, exist_ok=True)
class Config:
@@ -63,18 +67,26 @@ class Config:
TELEGRAM_CHAT_ID = os.environ.get("TELEGRAM_CHAT_ID", "")
# ── 앱 폴더 경로 (문자열)
- UPLOAD_FOLDER = (DATA_DIR / "temp_ip").as_posix()
- BACKUP_FOLDER = (DATA_DIR / "backup").as_posix()
- TEMP_ZIP_FOLDER = (DATA_DIR / "temp_zips").as_posix()
- XML_FOLDER = (DATA_DIR / "xml").as_posix()
+ # [Restructured]
+ UPLOAD_FOLDER = (DATA_DIR / "temp" / "uploads").as_posix()
+ BACKUP_FOLDER = (DATA_DIR / "system" / "backup").as_posix()
+ TEMP_ZIP_FOLDER = (DATA_DIR / "temp" / "zips").as_posix()
+
+ XML_FOLDER = (DATA_DIR / "repository" / "xml").as_posix() # Assuming xml fits in repository
SCRIPT_FOLDER = (DATA_DIR / "scripts").as_posix()
- IDRAC_INFO_FOLDER = (DATA_DIR / "idrac_info").as_posix()
- MAC_FOLDER = (DATA_DIR / "mac").as_posix()
- GUID_FOLDER = (DATA_DIR / "guid_file").as_posix()
- GPU_FOLDER = (DATA_DIR / "gpu_serial").as_posix()
- MAC_BACKUP_FOLDER = (DATA_DIR / "mac_backup").as_posix()
- SERVER_LIST_FOLDER = (DATA_DIR / "server_list").as_posix()
- LOG_FOLDER = (DATA_DIR / "logs").as_posix()
+
+ # Staging area for collection results
+ IDRAC_INFO_FOLDER = (DATA_DIR / "temp" / "staging").as_posix()
+
+ # Final repositories
+ MAC_FOLDER = (DATA_DIR / "repository" / "mac").as_posix()
+ GUID_FOLDER = (DATA_DIR / "repository" / "guid_file").as_posix()
+ GPU_FOLDER = (DATA_DIR / "repository" / "gpu_serial").as_posix()
+ MAC_BACKUP_FOLDER = (DATA_DIR / "system" / "mac_backup").as_posix()
+ ARCHIVE_FOLDER = (DATA_DIR / "system" / "archive").as_posix()
+
+ SERVER_LIST_FOLDER = (DATA_DIR / "server_list").as_posix() # Keep as is for now or move to repo?
+ LOG_FOLDER = (DATA_DIR / "system" / "logs").as_posix()
# ── 업로드/파일
ALLOWED_EXTENSIONS = {"xml"}
@@ -82,7 +94,7 @@ class Config:
# ── 페이지네이션/병렬
FILES_PER_PAGE = int(os.getenv("FILES_PER_PAGE", 35))
- BACKUP_FILES_PER_PAGE = int(os.getenv("BACKUP_FILES_PER_PAGE", 5))
+ BACKUP_FILES_PER_PAGE = int(os.getenv("BACKUP_FILES_PER_PAGE", 10))
MAX_WORKERS = int(os.getenv("MAX_WORKERS", 60))
# ── 세션
diff --git a/data/backend/instance/site.db b/data/backend/instance/site.db
deleted file mode 100644
index a82f97c..0000000
Binary files a/data/backend/instance/site.db and /dev/null differ
diff --git a/data/backup/새 폴더/1BZ7HG4.txt b/data/backup/새 폴더/1BZ7HG4.txt
deleted file mode 100644
index 3b8a6ca..0000000
--- a/data/backup/새 폴더/1BZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1BZ7HG4
-Slot.38: 3825:F303:0085:07A6
-Slot.39: 3825:F303:0084:FDBA
-Slot.37: 3825:F303:0085:07EE
-Slot.36: 3825:F303:0085:1E66
-Slot.32: 3825:F303:0084:FABE
-Slot.33: 3825:F303:0084:FE76
-Slot.34: 3825:F303:0084:FE5E
-Slot.35: 3825:F303:0085:07EA
-Slot.31: 3825:F303:0084:FC26
-Slot.40: 3825:F303:0084:FBCA
-GUID: 0x3825F303008507A6;0x3825F3030084FDBA;0x3825F303008507EE;0x3825F30300851E66;0x3825F3030084FABE;0x3825F3030084FE76;0x3825F3030084FE5E;0x3825F303008507EA;0x3825F3030084FC26;0x3825F3030084FBCA
diff --git a/data/backup/새 폴더/1T48HG4.txt b/data/backup/새 폴더/1T48HG4.txt
deleted file mode 100644
index 818e8f2..0000000
--- a/data/backup/새 폴더/1T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1T48HG4
-Slot.38: B45C:B503:000D:C3FA
-Slot.39: B45C:B503:000D:C3AA
-Slot.37: B45C:B503:000D:C3B6
-Slot.36: B45C:B503:000D:C3AE
-Slot.32: B45C:B503:000D:C3DE
-Slot.33: 605E:6503:00EE:1FC8
-Slot.34: 605E:6503:00EE:1FEC
-Slot.35: 605E:6503:00EE:1F40
-Slot.31: 605E:6503:00EE:1FC4
-Slot.40: B45C:B503:000D:C3CE
-GUID: 0xB45CB503000DC3FA;0xB45CB503000DC3AA;0xB45CB503000DC3B6;0xB45CB503000DC3AE;0xB45CB503000DC3DE;0x605E650300EE1FC8;0x605E650300EE1FEC;0x605E650300EE1F40;0x605E650300EE1FC4;0xB45CB503000DC3CE
diff --git a/data/backup/새 폴더/1V48HG4.txt b/data/backup/새 폴더/1V48HG4.txt
deleted file mode 100644
index 71d0bbc..0000000
--- a/data/backup/새 폴더/1V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1V48HG4
-Slot.38: B45C:B503:000D:C602
-Slot.39: B45C:B503:000D:C61E
-Slot.37: 605E:6503:00EE:1DF0
-Slot.36: B45C:B503:000D:C616
-Slot.32: B45C:B503:000D:C60A
-Slot.33: B45C:B503:000D:C5EE
-Slot.34: 605E:6503:00EE:1D70
-Slot.35: 605E:6503:00EE:1E3C
-Slot.31: 605E:6503:00EE:1B6C
-Slot.40: B45C:B503:000D:C5C2
-GUID: 0xB45CB503000DC602;0xB45CB503000DC61E;0x605E650300EE1DF0;0xB45CB503000DC616;0xB45CB503000DC60A;0xB45CB503000DC5EE;0x605E650300EE1D70;0x605E650300EE1E3C;0x605E650300EE1B6C;0xB45CB503000DC5C2
diff --git a/data/gpu_serial/152F7G4.txt b/data/gpu_serial/152F7G4.txt
deleted file mode 100644
index 117fe92..0000000
--- a/data/gpu_serial/152F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-152F7G4
-Slot.38: B45C:B503:000D:CE2A
-Slot.39: B45C:B503:000D:CDBE
-Slot.37: B45C:B503:000D:CE32
-Slot.36: B45C:B503:000D:CE66
-Slot.32: B45C:B503:000D:CE2E
-Slot.33: B45C:B503:000D:CE1A
-Slot.34: B45C:B503:000D:CE56
-Slot.35: B45C:B503:000D:CE76
-Slot.31: B45C:B503:000D:CE3E
-Slot.40: B45C:B503:000D:CE12
-GUID: 0xB45CB503000DCE2A;0xB45CB503000DCDBE;0xB45CB503000DCE32;0xB45CB503000DCE66;0xB45CB503000DCE2E;0xB45CB503000DCE1A;0xB45CB503000DCE56;0xB45CB503000DCE76;0xB45CB503000DCE3E;0xB45CB503000DCE12
diff --git a/data/gpu_serial/17Z7HG4.txt b/data/gpu_serial/17Z7HG4.txt
deleted file mode 100644
index 6ddd82e..0000000
--- a/data/gpu_serial/17Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-17Z7HG4
-Slot.38: 3825:F303:0085:04AE
-Slot.39: 3825:F303:0085:0576
-Slot.37: 3825:F303:0085:04A2
-Slot.36: 3825:F303:0085:054E
-Slot.32: 3825:F303:0085:0546
-Slot.33: 3825:F303:0085:0572
-Slot.34: 3825:F303:0085:04FA
-Slot.35: 3825:F303:0085:049A
-Slot.31: 3825:F303:0085:0516
-Slot.40: 3825:F303:0085:051A
-GUID: 0x3825F303008504AE;0x3825F30300850576;0x3825F303008504A2;0x3825F3030085054E;0x3825F30300850546;0x3825F30300850572;0x3825F303008504FA;0x3825F3030085049A;0x3825F30300850516;0x3825F3030085051A
diff --git a/data/gpu_serial/18Z7HG4.txt b/data/gpu_serial/18Z7HG4.txt
deleted file mode 100644
index f766390..0000000
--- a/data/gpu_serial/18Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-18Z7HG4
-Slot.38: B45C:B503:000D:E44E
-Slot.39: B45C:B503:000D:E53A
-Slot.37: B45C:B503:000D:E452
-Slot.36: B45C:B503:000D:E42A
-Slot.32: B45C:B503:000D:E4C6
-Slot.33: B45C:B503:000D:E502
-Slot.34: B45C:B503:000D:E506
-Slot.35: B45C:B503:000D:E53E
-Slot.31: B45C:B503:000D:E436
-Slot.40: B45C:B503:000D:E43A
-GUID: 0xB45CB503000DE44E;0xB45CB503000DE53A;0xB45CB503000DE452;0xB45CB503000DE42A;0xB45CB503000DE4C6;0xB45CB503000DE502;0xB45CB503000DE506;0xB45CB503000DE53E;0xB45CB503000DE436;0xB45CB503000DE43A
diff --git a/data/gpu_serial/19Z7HG4.txt b/data/gpu_serial/19Z7HG4.txt
deleted file mode 100644
index 3090a5d..0000000
--- a/data/gpu_serial/19Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-19Z7HG4
-Slot.38: 3825:F303:0085:04E6
-Slot.39: 3825:F303:0085:0596
-Slot.37: 3825:F303:0085:05BA
-Slot.36: 3825:F303:0085:05B2
-Slot.32: 3825:F303:0085:05A2
-Slot.33: 3825:F303:0085:04B6
-Slot.34: 3825:F303:0085:05B6
-Slot.35: 3825:F303:0085:05AE
-Slot.31: 3825:F303:0085:058E
-Slot.40: 3825:F303:0085:0552
-GUID: 0x3825F303008504E6;0x3825F30300850596;0x3825F303008505BA;0x3825F303008505B2;0x3825F303008505A2;0x3825F303008504B6;0x3825F303008505B6;0x3825F303008505AE;0x3825F3030085058E;0x3825F30300850552
diff --git a/data/gpu_serial/1BZ7HG4.txt b/data/gpu_serial/1BZ7HG4.txt
deleted file mode 100644
index 3b8a6ca..0000000
--- a/data/gpu_serial/1BZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1BZ7HG4
-Slot.38: 3825:F303:0085:07A6
-Slot.39: 3825:F303:0084:FDBA
-Slot.37: 3825:F303:0085:07EE
-Slot.36: 3825:F303:0085:1E66
-Slot.32: 3825:F303:0084:FABE
-Slot.33: 3825:F303:0084:FE76
-Slot.34: 3825:F303:0084:FE5E
-Slot.35: 3825:F303:0085:07EA
-Slot.31: 3825:F303:0084:FC26
-Slot.40: 3825:F303:0084:FBCA
-GUID: 0x3825F303008507A6;0x3825F3030084FDBA;0x3825F303008507EE;0x3825F30300851E66;0x3825F3030084FABE;0x3825F3030084FE76;0x3825F3030084FE5E;0x3825F303008507EA;0x3825F3030084FC26;0x3825F3030084FBCA
diff --git a/data/gpu_serial/1T48HG4.txt b/data/gpu_serial/1T48HG4.txt
deleted file mode 100644
index 818e8f2..0000000
--- a/data/gpu_serial/1T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1T48HG4
-Slot.38: B45C:B503:000D:C3FA
-Slot.39: B45C:B503:000D:C3AA
-Slot.37: B45C:B503:000D:C3B6
-Slot.36: B45C:B503:000D:C3AE
-Slot.32: B45C:B503:000D:C3DE
-Slot.33: 605E:6503:00EE:1FC8
-Slot.34: 605E:6503:00EE:1FEC
-Slot.35: 605E:6503:00EE:1F40
-Slot.31: 605E:6503:00EE:1FC4
-Slot.40: B45C:B503:000D:C3CE
-GUID: 0xB45CB503000DC3FA;0xB45CB503000DC3AA;0xB45CB503000DC3B6;0xB45CB503000DC3AE;0xB45CB503000DC3DE;0x605E650300EE1FC8;0x605E650300EE1FEC;0x605E650300EE1F40;0x605E650300EE1FC4;0xB45CB503000DC3CE
diff --git a/data/gpu_serial/1V48HG4.txt b/data/gpu_serial/1V48HG4.txt
deleted file mode 100644
index 71d0bbc..0000000
--- a/data/gpu_serial/1V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1V48HG4
-Slot.38: B45C:B503:000D:C602
-Slot.39: B45C:B503:000D:C61E
-Slot.37: 605E:6503:00EE:1DF0
-Slot.36: B45C:B503:000D:C616
-Slot.32: B45C:B503:000D:C60A
-Slot.33: B45C:B503:000D:C5EE
-Slot.34: 605E:6503:00EE:1D70
-Slot.35: 605E:6503:00EE:1E3C
-Slot.31: 605E:6503:00EE:1B6C
-Slot.40: B45C:B503:000D:C5C2
-GUID: 0xB45CB503000DC602;0xB45CB503000DC61E;0x605E650300EE1DF0;0xB45CB503000DC616;0xB45CB503000DC60A;0xB45CB503000DC5EE;0x605E650300EE1D70;0x605E650300EE1E3C;0x605E650300EE1B6C;0xB45CB503000DC5C2
diff --git a/data/gpu_serial/1XZCZC4.txt b/data/gpu_serial/1XZCZC4.txt
deleted file mode 100644
index 8928b07..0000000
--- a/data/gpu_serial/1XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1XZCZC4
-Slot.38: 3825:F303:00C4:15EC
-Slot.39: 3825:F303:00C4:15F8
-Slot.37: 3825:F303:00C4:15E8
-Slot.36: 3825:F303:00C4:15E4
-Slot.32: 3825:F303:00C4:1564
-Slot.33: 3825:F303:00C4:1560
-Slot.34: 3825:F303:00C4:0AF4
-Slot.35: 3825:F303:00C4:1600
-Slot.31: 3825:F303:00C4:0910
-Slot.40: 3825:F303:00C4:1608
-GUID: 0x3825F30300C415EC;0x3825F30300C415F8;0x3825F30300C415E8;0x3825F30300C415E4;0x3825F30300C41564;0x3825F30300C41560;0x3825F30300C40AF4;0x3825F30300C41600;0x3825F30300C40910;0x3825F30300C41608
diff --git a/data/gpu_serial/2058HG4.txt b/data/gpu_serial/2058HG4.txt
deleted file mode 100644
index ddf3f2e..0000000
--- a/data/gpu_serial/2058HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2058HG4
-Slot.38: B45C:B503:000D:C41E
-Slot.39: 605E:6503:00EE:20B0
-Slot.37: 605E:6503:0075:307C
-Slot.36: 605E:6503:0075:30CC
-Slot.32: 605E:6503:00EE:20A8
-Slot.33: 605E:6503:0075:3028
-Slot.34: 605E:6503:0075:2F80
-Slot.35: 605E:6503:0075:3218
-Slot.31: 605E:6503:0075:3260
-Slot.40: 605E:6503:00EE:204C
-GUID: 0xB45CB503000DC41E;0x605E650300EE20B0;0x605E65030075307C;0x605E6503007530CC;0x605E650300EE20A8;0x605E650300753028;0x605E650300752F80;0x605E650300753218;0x605E650300753260;0x605E650300EE204C
diff --git a/data/gpu_serial/26Z7HG4.txt b/data/gpu_serial/26Z7HG4.txt
deleted file mode 100644
index 9fc68bc..0000000
--- a/data/gpu_serial/26Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-26Z7HG4
-Slot.38: B45C:B503:0039:DE8E
-Slot.39: B45C:B503:0039:DF22
-Slot.37: B45C:B503:0039:DF36
-Slot.36: B45C:B503:0039:DF06
-Slot.32: B45C:B503:0039:DF6E
-Slot.33: B45C:B503:0039:DF2A
-Slot.34: B45C:B503:0039:DF72
-Slot.35: B45C:B503:0039:DF32
-Slot.31: B45C:B503:0039:DF42
-Slot.40: B45C:B503:0039:DEAA
-GUID: 0xB45CB5030039DE8E;0xB45CB5030039DF22;0xB45CB5030039DF36;0xB45CB5030039DF06;0xB45CB5030039DF6E;0xB45CB5030039DF2A;0xB45CB5030039DF72;0xB45CB5030039DF32;0xB45CB5030039DF42;0xB45CB5030039DEAA
diff --git a/data/gpu_serial/273HZC4.txt b/data/gpu_serial/273HZC4.txt
deleted file mode 100644
index dc921b1..0000000
--- a/data/gpu_serial/273HZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-273HZC4
-Slot.38: 5C25:7303:000C:386A
-Slot.39: 5C25:7303:000C:3932
-Slot.37: 5C25:7303:000C:388A
-Slot.36: 5C25:7303:000C:3A7A
-Slot.32: 5C25:7303:000C:3A82
-Slot.33: 5C25:7303:000C:3AC2
-Slot.34: 5C25:7303:000C:3B22
-Slot.35: 5C25:7303:000C:3886
-Slot.31: 5C25:7303:000C:3AFA
-Slot.40: 5C25:7303:000C:3B1E
-GUID: 0x5C257303000C386A;0x5C257303000C3932;0x5C257303000C388A;0x5C257303000C3A7A;0x5C257303000C3A82;0x5C257303000C3AC2;0x5C257303000C3B22;0x5C257303000C3886;0x5C257303000C3AFA;0x5C257303000C3B1E
diff --git a/data/gpu_serial/28Z7HG4.txt b/data/gpu_serial/28Z7HG4.txt
deleted file mode 100644
index 0874a1f..0000000
--- a/data/gpu_serial/28Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-28Z7HG4
-Slot.38: 3825:F303:0085:0696
-Slot.39: 3825:F303:0085:06CE
-Slot.37: 3825:F303:0085:06BE
-Slot.36: 3825:F303:0085:03FE
-Slot.32: 3825:F303:0085:051E
-Slot.33: 3825:F303:0085:058A
-Slot.34: 3825:F303:0085:06A6
-Slot.35: 3825:F303:0085:06C6
-Slot.31: 3825:F303:0085:06C2
-Slot.40: 3825:F303:0085:0726
-GUID: 0x3825F30300850696;0x3825F303008506CE;0x3825F303008506BE;0x3825F303008503FE;0x3825F3030085051E;0x3825F3030085058A;0x3825F303008506A6;0x3825F303008506C6;0x3825F303008506C2;0x3825F30300850726
diff --git a/data/gpu_serial/2NYCZC4.txt b/data/gpu_serial/2NYCZC4.txt
deleted file mode 100644
index d2cd94c..0000000
--- a/data/gpu_serial/2NYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2NYCZC4
-Slot.38: 3825:F303:00C4:042C
-Slot.39: 3825:F303:00C4:04A8
-Slot.37: 3825:F303:00C4:0420
-Slot.36: 3825:F303:00C4:0418
-Slot.32: 3825:F303:00C4:0508
-Slot.33: 3825:F303:00C4:12B4
-Slot.34: 3825:F303:00C4:12EC
-Slot.35: 3825:F303:00C4:122C
-Slot.31: 3825:F303:00C4:0484
-Slot.40: 3825:F303:00C4:048C
-GUID: 0x3825F30300C4042C;0x3825F30300C404A8;0x3825F30300C40420;0x3825F30300C40418;0x3825F30300C40508;0x3825F30300C412B4;0x3825F30300C412EC;0x3825F30300C4122C;0x3825F30300C40484;0x3825F30300C4048C
diff --git a/data/gpu_serial/2T48HG4.txt b/data/gpu_serial/2T48HG4.txt
deleted file mode 100644
index 5261592..0000000
--- a/data/gpu_serial/2T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2T48HG4
-Slot.38: B45C:B503:000D:C402
-Slot.39: 605E:6503:00EE:2038
-Slot.37: 605E:6503:00EE:1FE0
-Slot.36: 605E:6503:00EE:1FD8
-Slot.32: B45C:B503:000D:C40E
-Slot.33: 605E:6503:00EE:2080
-Slot.34: B45C:B503:000D:C406
-Slot.35: 605E:6503:00EE:2054
-Slot.31: B45C:B503:000D:C45A
-Slot.40: 605E:6503:00EE:20C8
-GUID: 0xB45CB503000DC402;0x605E650300EE2038;0x605E650300EE1FE0;0x605E650300EE1FD8;0xB45CB503000DC40E;0x605E650300EE2080;0xB45CB503000DC406;0x605E650300EE2054;0xB45CB503000DC45A;0x605E650300EE20C8
diff --git a/data/gpu_serial/2V48HG4.txt b/data/gpu_serial/2V48HG4.txt
deleted file mode 100644
index 67bacdf..0000000
--- a/data/gpu_serial/2V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2V48HG4
-Slot.38: 605E:6503:00EE:1AA8
-Slot.39: 605E:6503:00EE:1A5C
-Slot.37: 605E:6503:00EE:1A1C
-Slot.36: 605E:6503:00EE:1AD8
-Slot.32: 605E:6503:00EE:1A98
-Slot.33: 605E:6503:00EE:1A54
-Slot.34: 605E:6503:00EE:1A70
-Slot.35: 605E:6503:00EE:1AA4
-Slot.31: 605E:6503:00EE:1A58
-Slot.40: 605E:6503:00EE:1A18
-GUID: 0x605E650300EE1AA8;0x605E650300EE1A5C;0x605E650300EE1A1C;0x605E650300EE1AD8;0x605E650300EE1A98;0x605E650300EE1A54;0x605E650300EE1A70;0x605E650300EE1AA4;0x605E650300EE1A58;0x605E650300EE1A18
diff --git a/data/gpu_serial/2XZCZC4.txt b/data/gpu_serial/2XZCZC4.txt
deleted file mode 100644
index 2f31006..0000000
--- a/data/gpu_serial/2XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2XZCZC4
-Slot.38: 3825:F303:00C4:0AEC
-Slot.39: 3825:F303:00C4:0AD8
-Slot.37: 3825:F303:00C4:0AC8
-Slot.36: 3825:F303:00C4:15F4
-Slot.32: 3825:F303:00C4:0AD0
-Slot.33: 3825:F303:00C4:0AE0
-Slot.34: 3825:F303:00C4:0ADC
-Slot.35: 3825:F303:00C4:1568
-Slot.31: 3825:F303:00C4:0AE8
-Slot.40: 3825:F303:00C4:0AD4
-GUID: 0x3825F30300C40AEC;0x3825F30300C40AD8;0x3825F30300C40AC8;0x3825F30300C415F4;0x3825F30300C40AD0;0x3825F30300C40AE0;0x3825F30300C40ADC;0x3825F30300C41568;0x3825F30300C40AE8;0x3825F30300C40AD4
diff --git a/data/gpu_serial/3058HG4.txt b/data/gpu_serial/3058HG4.txt
deleted file mode 100644
index d948e1a..0000000
--- a/data/gpu_serial/3058HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3058HG4
-Slot.38: 605E:6503:00EE:1F58
-Slot.39: 605E:6503:00EE:1FBC
-Slot.37: 605E:6503:00EE:2090
-Slot.36: B45C:B503:000D:C502
-Slot.32: 605E:6503:00EE:1FB8
-Slot.33: 605E:6503:00EE:2084
-Slot.34: 605E:6503:00EE:1F70
-Slot.35: 605E:6503:00EE:1F80
-Slot.31: B45C:B503:000D:C4BA
-Slot.40: B45C:B503:000D:C4B2
-GUID: 0x605E650300EE1F58;0x605E650300EE1FBC;0x605E650300EE2090;0xB45CB503000DC502;0x605E650300EE1FB8;0x605E650300EE2084;0x605E650300EE1F70;0x605E650300EE1F80;0xB45CB503000DC4BA;0xB45CB503000DC4B2
diff --git a/data/gpu_serial/332F7G4.txt b/data/gpu_serial/332F7G4.txt
deleted file mode 100644
index f3a698c..0000000
--- a/data/gpu_serial/332F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-332F7G4
-Slot.38: B45C:B503:000D:CF5A
-Slot.39: B45C:B503:000D:D5AE
-Slot.37: B45C:B503:000D:D51E
-Slot.36: B45C:B503:000D:D67E
-Slot.32: B45C:B503:000D:D502
-Slot.33: B45C:B503:000D:D5C6
-Slot.34: B45C:B503:000D:D4FE
-Slot.35: B45C:B503:000D:D646
-Slot.31: B45C:B503:000D:CF8E
-Slot.40: B45C:B503:000D:CF96
-GUID: 0xB45CB503000DCF5A;0xB45CB503000DD5AE;0xB45CB503000DD51E;0xB45CB503000DD67E;0xB45CB503000DD502;0xB45CB503000DD5C6;0xB45CB503000DD4FE;0xB45CB503000DD646;0xB45CB503000DCF8E;0xB45CB503000DCF96
diff --git a/data/gpu_serial/38Z7HG4.txt b/data/gpu_serial/38Z7HG4.txt
deleted file mode 100644
index 10ea413..0000000
--- a/data/gpu_serial/38Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-38Z7HG4
-Slot.38: B45C:B503:000D:DB7A
-Slot.39: B45C:B503:000D:DB5E
-Slot.37: 3825:F303:0084:FE56
-Slot.36: B45C:B503:000D:DB9A
-Slot.32: B45C:B503:000D:DB66
-Slot.33: B45C:B503:000D:DB76
-Slot.34: B45C:B503:000D:DAE2
-Slot.35: 3825:F303:0084:FE6E
-Slot.31: B45C:B503:000D:DB5A
-Slot.40: 3825:F303:0084:FE72
-GUID: 0xB45CB503000DDB7A;0xB45CB503000DDB5E;0x3825F3030084FE56;0xB45CB503000DDB9A;0xB45CB503000DDB66;0xB45CB503000DDB76;0xB45CB503000DDAE2;0x3825F3030084FE6E;0xB45CB503000DDB5A;0x3825F3030084FE72
diff --git a/data/gpu_serial/39Z7HG4.txt b/data/gpu_serial/39Z7HG4.txt
deleted file mode 100644
index 6a463ff..0000000
--- a/data/gpu_serial/39Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-39Z7HG4
-Slot.38: B45C:B503:0039:DF1A
-Slot.39: 3825:F303:0085:0262
-Slot.37: B45C:B503:000D:E48A
-Slot.36: B45C:B503:000D:E4A6
-Slot.32: B45C:B503:000D:E37A
-Slot.33: B45C:B503:000D:E4B6
-Slot.34: 3825:F303:0085:0202
-Slot.35: B45C:B503:000D:E432
-Slot.31: B45C:B503:000D:E49E
-Slot.40: 3825:F303:0085:025A
-GUID: 0xB45CB5030039DF1A;0x3825F30300850262;0xB45CB503000DE48A;0xB45CB503000DE4A6;0xB45CB503000DE37A;0xB45CB503000DE4B6;0x3825F30300850202;0xB45CB503000DE432;0xB45CB503000DE49E;0x3825F3030085025A
diff --git a/data/gpu_serial/3LYCZC4.txt b/data/gpu_serial/3LYCZC4.txt
deleted file mode 100644
index a8600a7..0000000
--- a/data/gpu_serial/3LYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3LYCZC4
-Slot.38: 5000:E603:0068:F204
-Slot.39: 5000:E603:0068:F464
-Slot.37: 5000:E603:0068:F2B8
-Slot.36: 5000:E603:0068:F2FC
-Slot.32: 5000:E603:0068:F294
-Slot.33: 5000:E603:0068:F504
-Slot.34: 5000:E603:0068:F450
-Slot.35: 5000:E603:0068:F2C4
-Slot.31: 5000:E603:0068:F50C
-Slot.40: 5000:E603:0068:F4FC
-GUID: 0x5000E6030068F204;0x5000E6030068F464;0x5000E6030068F2B8;0x5000E6030068F2FC;0x5000E6030068F294;0x5000E6030068F504;0x5000E6030068F450;0x5000E6030068F2C4;0x5000E6030068F50C;0x5000E6030068F4FC
diff --git a/data/gpu_serial/3MYCZC4.txt b/data/gpu_serial/3MYCZC4.txt
deleted file mode 100644
index a2fd8d0..0000000
--- a/data/gpu_serial/3MYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3MYCZC4
-Slot.38: 5000:E603:0068:F480
-Slot.39: 5000:E603:0068:F254
-Slot.37: 5000:E603:0068:F408
-Slot.36: 5000:E603:0068:F33C
-Slot.32: 5000:E603:0068:F40C
-Slot.33: 5000:E603:0068:F4AC
-Slot.34: 5000:E603:0068:F4C8
-Slot.35: 5000:E603:0068:F410
-Slot.31: 5000:E603:0068:F490
-Slot.40: 5000:E603:0068:F3A0
-GUID: 0x5000E6030068F480;0x5000E6030068F254;0x5000E6030068F408;0x5000E6030068F33C;0x5000E6030068F40C;0x5000E6030068F4AC;0x5000E6030068F4C8;0x5000E6030068F410;0x5000E6030068F490;0x5000E6030068F3A0
diff --git a/data/gpu_serial/3PYCZC4.txt b/data/gpu_serial/3PYCZC4.txt
deleted file mode 100644
index 8ef6ad7..0000000
--- a/data/gpu_serial/3PYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3PYCZC4
-Slot.38: 5000:E603:0068:F460
-Slot.39: 5000:E603:0068:F44C
-Slot.37: 5000:E603:0068:F380
-Slot.36: 5000:E603:0068:F2BC
-Slot.32: 5000:E603:0068:F4EC
-Slot.33: 5000:E603:0068:F274
-Slot.34: 5000:E603:0068:F4E4
-Slot.35: 5000:E603:0068:F284
-Slot.31: 5000:E603:0068:F3DC
-Slot.40: 5000:E603:0068:F354
-GUID: 0x5000E6030068F460;0x5000E6030068F44C;0x5000E6030068F380;0x5000E6030068F2BC;0x5000E6030068F4EC;0x5000E6030068F274;0x5000E6030068F4E4;0x5000E6030068F284;0x5000E6030068F3DC;0x5000E6030068F354
diff --git a/data/gpu_serial/3SJCZC4.txt b/data/gpu_serial/3SJCZC4.txt
deleted file mode 100644
index 8262100..0000000
--- a/data/gpu_serial/3SJCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3SJCZC4
-Slot.38: 7C8C:0903:00AE:614C
-Slot.39: 7C8C:0903:00AE:6158
-Slot.37: 7C8C:0903:00AE:615C
-Slot.36: 7C8C:0903:00B6:A96A
-Slot.32: 7C8C:0903:00AE:6124
-Slot.33: 7C8C:0903:00B6:A976
-Slot.34: 7C8C:0903:00AE:6204
-Slot.35: 7C8C:0903:00AE:6208
-Slot.31: 7C8C:0903:00AE:61C0
-Slot.40: 7C8C:0903:00B6:A972
-GUID: 0x7C8C090300AE614C;0x7C8C090300AE6158;0x7C8C090300AE615C;0x7C8C090300B6A96A;0x7C8C090300AE6124;0x7C8C090300B6A976;0x7C8C090300AE6204;0x7C8C090300AE6208;0x7C8C090300AE61C0;0x7C8C090300B6A972
diff --git a/data/gpu_serial/3Y48HG4.txt b/data/gpu_serial/3Y48HG4.txt
deleted file mode 100644
index f5b1423..0000000
--- a/data/gpu_serial/3Y48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3Y48HG4
-Slot.38: B45C:B503:000D:C4B6
-Slot.39: B45C:B503:000D:C6EA
-Slot.37: B45C:B503:000D:C4CA
-Slot.36: B45C:B503:000D:C49E
-Slot.32: B45C:B503:000D:C49A
-Slot.33: B45C:B503:000D:C6D2
-Slot.34: B45C:B503:000D:C6BA
-Slot.35: B45C:B503:000D:C4AE
-Slot.31: B45C:B503:000D:C4DA
-Slot.40: B45C:B503:000D:C4D2
-GUID: 0xB45CB503000DC4B6;0xB45CB503000DC6EA;0xB45CB503000DC4CA;0xB45CB503000DC49E;0xB45CB503000DC49A;0xB45CB503000DC6D2;0xB45CB503000DC6BA;0xB45CB503000DC4AE;0xB45CB503000DC4DA;0xB45CB503000DC4D2
diff --git a/data/gpu_serial/4058HG4.txt b/data/gpu_serial/4058HG4.txt
deleted file mode 100644
index 1db70cd..0000000
--- a/data/gpu_serial/4058HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-4058HG4
-Slot.38: 605E:6503:00EE:1FA8
-Slot.39: 605E:6503:00EE:1F88
-Slot.37: 605E:6503:00EE:208C
-Slot.36: 605E:6503:00EE:2010
-Slot.32: 605E:6503:00EE:1E30
-Slot.33: 605E:6503:00EE:1DEC
-Slot.34: 605E:6503:00EE:1FA0
-Slot.35: 605E:6503:00EE:1F9C
-Slot.31: 605E:6503:00EE:1EC8
-Slot.40: 605E:6503:00EE:1EA4
-GUID: 0x605E650300EE1FA8;0x605E650300EE1F88;0x605E650300EE208C;0x605E650300EE2010;0x605E650300EE1E30;0x605E650300EE1DEC;0x605E650300EE1FA0;0x605E650300EE1F9C;0x605E650300EE1EC8;0x605E650300EE1EA4
diff --git a/data/gpu_serial/442F7G4.txt b/data/gpu_serial/442F7G4.txt
deleted file mode 100644
index 493ef12..0000000
--- a/data/gpu_serial/442F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-442F7G4
-Slot.38: B45C:B503:000D:CFC6
-Slot.39: B45C:B503:000D:CFB6
-Slot.37: B45C:B503:000D:D6D2
-Slot.36: B45C:B503:000D:D6DE
-Slot.32: B45C:B503:000D:C57E
-Slot.33: B45C:B503:000D:CE36
-Slot.34: B45C:B503:000D:C59A
-Slot.35: B45C:B503:000D:C5CA
-Slot.31: B45C:B503:000D:D6CE
-Slot.40: B45C:B503:000D:D00A
-GUID: 0xB45CB503000DCFC6;0xB45CB503000DCFB6;0xB45CB503000DD6D2;0xB45CB503000DD6DE;0xB45CB503000DC57E;0xB45CB503000DCE36;0xB45CB503000DC59A;0xB45CB503000DC5CA;0xB45CB503000DD6CE;0xB45CB503000DD00A
diff --git a/data/gpu_serial/472B7G4.txt b/data/gpu_serial/472B7G4.txt
deleted file mode 100644
index 0e31ebd..0000000
--- a/data/gpu_serial/472B7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-472B7G4
-Slot.38: B45C:B503:000D:D60E
-Slot.39: 605E:6503:00EE:1C00
-Slot.37: B45C:B503:000D:D612
-Slot.36: 605E:6503:00EE:1C1C
-Slot.32: B45C:B503:000D:D69E
-Slot.33: B45C:B503:000D:CF1A
-Slot.34: 605E:6503:00EE:1C7C
-Slot.35: B45C:B503:000D:CF16
-Slot.31: B45C:B503:000D:D56E
-Slot.40: B45C:B503:000D:D582
-GUID: 0xB45CB503000DD60E;0x605E650300EE1C00;0xB45CB503000DD612;0x605E650300EE1C1C;0xB45CB503000DD69E;0xB45CB503000DCF1A;0x605E650300EE1C7C;0xB45CB503000DCF16;0xB45CB503000DD56E;0xB45CB503000DD582
diff --git a/data/gpu_serial/48Z7HG4.txt b/data/gpu_serial/48Z7HG4.txt
deleted file mode 100644
index d2a33d9..0000000
--- a/data/gpu_serial/48Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-48Z7HG4
-Slot.38: B45C:B503:000D:E4BE
-Slot.39: B45C:B503:000D:E4AA
-Slot.37: B45C:B503:000D:E476
-Slot.36: B45C:B503:000D:E47A
-Slot.32: B45C:B503:000D:E46E
-Slot.33: B45C:B503:000D:E48E
-Slot.34: B45C:B503:000D:E4AE
-Slot.35: B45C:B503:000D:E4E6
-Slot.31: B45C:B503:000D:E482
-Slot.40: B45C:B503:000D:E4B2
-GUID: 0xB45CB503000DE4BE;0xB45CB503000DE4AA;0xB45CB503000DE476;0xB45CB503000DE47A;0xB45CB503000DE46E;0xB45CB503000DE48E;0xB45CB503000DE4AE;0xB45CB503000DE4E6;0xB45CB503000DE482;0xB45CB503000DE4B2
diff --git a/data/gpu_serial/49Z7HG4.txt b/data/gpu_serial/49Z7HG4.txt
deleted file mode 100644
index e2914ba..0000000
--- a/data/gpu_serial/49Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-49Z7HG4
-Slot.38: 3825:F303:0085:02DA
-Slot.39: 3825:F303:0085:075A
-Slot.37: 3825:F303:0085:086A
-Slot.36: 3825:F303:0085:075E
-Slot.32: 3825:F303:0085:074A
-Slot.33: 3825:F303:0085:07F2
-Slot.34: 3825:F303:0085:070A
-Slot.35: 3825:F303:0085:086E
-Slot.31: 3825:F303:0085:0786
-Slot.40: 3825:F303:0085:0662
-GUID: 0x3825F303008502DA;0x3825F3030085075A;0x3825F3030085086A;0x3825F3030085075E;0x3825F3030085074A;0x3825F303008507F2;0x3825F3030085070A;0x3825F3030085086E;0x3825F30300850786;0x3825F30300850662
diff --git a/data/gpu_serial/4K8XHG4.txt b/data/gpu_serial/4K8XHG4.txt
deleted file mode 100644
index 30fde6d..0000000
--- a/data/gpu_serial/4K8XHG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-4K8XHG4
-Slot.38: 605E:6503:00EE:1104
-Slot.39: 605E:6503:00EE:111C
-Slot.37: 605E:6503:00EE:10EC
-Slot.36: 605E:6503:00EE:1110
-Slot.32: 605E:6503:00EE:114C
-Slot.33: 605E:6503:00EE:1128
-Slot.34: 605E:6503:00EE:1114
-Slot.35: 605E:6503:00EE:1140
-Slot.31: 605E:6503:00EE:113C
-Slot.40: 605E:6503:00EE:1134
-GUID: 0x605E650300EE1104;0x605E650300EE111C;0x605E650300EE10EC;0x605E650300EE1110;0x605E650300EE114C;0x605E650300EE1128;0x605E650300EE1114;0x605E650300EE1140;0x605E650300EE113C;0x605E650300EE1134
diff --git a/data/gpu_serial/4T48HG4.txt b/data/gpu_serial/4T48HG4.txt
deleted file mode 100644
index 08b8e75..0000000
--- a/data/gpu_serial/4T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-4T48HG4
-Slot.38: 605E:6503:00EE:1D80
-Slot.39: 605E:6503:00EE:1AC8
-Slot.37: 605E:6503:00EE:192C
-Slot.36: 605E:6503:00EE:1AD4
-Slot.32: 605E:6503:00EE:1DA0
-Slot.33: 605E:6503:00EE:1B08
-Slot.34: 605E:6503:00EE:1988
-Slot.35: 605E:6503:00EE:1D9C
-Slot.31: 605E:6503:00EE:1DBC
-Slot.40: 605E:6503:00EE:1D88
-GUID: 0x605E650300EE1D80;0x605E650300EE1AC8;0x605E650300EE192C;0x605E650300EE1AD4;0x605E650300EE1DA0;0x605E650300EE1B08;0x605E650300EE1988;0x605E650300EE1D9C;0x605E650300EE1DBC;0x605E650300EE1D88
diff --git a/data/gpu_serial/4XZCZC4.txt b/data/gpu_serial/4XZCZC4.txt
deleted file mode 100644
index e6b02ba..0000000
--- a/data/gpu_serial/4XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-4XZCZC4
-Slot.38: 5000:E603:0068:F318
-Slot.39: 5000:E603:0068:F458
-Slot.37: 5000:E603:0068:F23C
-Slot.36: 5000:E603:0068:F090
-Slot.32: 5000:E603:0068:F448
-Slot.33: 5000:E603:0068:F440
-Slot.34: 5000:E603:0068:F310
-Slot.35: 5000:E603:0068:F430
-Slot.31: 5000:E603:0068:F3C8
-Slot.40: 5000:E603:0068:F438
-GUID: 0x5000E6030068F318;0x5000E6030068F458;0x5000E6030068F23C;0x5000E6030068F090;0x5000E6030068F448;0x5000E6030068F440;0x5000E6030068F310;0x5000E6030068F430;0x5000E6030068F3C8;0x5000E6030068F438
diff --git a/data/gpu_serial/552F7G4.txt b/data/gpu_serial/552F7G4.txt
deleted file mode 100644
index 1d25566..0000000
--- a/data/gpu_serial/552F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-552F7G4
-Slot.38: B45C:B503:000D:DA6E
-Slot.39: B45C:B503:000D:D972
-Slot.37: B45C:B503:000D:DCEA
-Slot.36: B45C:B503:000D:DD1A
-Slot.32: B45C:B503:000D:DBAA
-Slot.33: B45C:B503:000D:DBAE
-Slot.34: B45C:B503:000D:DC5E
-Slot.35: B45C:B503:000D:DC22
-Slot.31: B45C:B503:000D:DCD2
-Slot.40: B45C:B503:000D:DC5A
-GUID: 0xB45CB503000DDA6E;0xB45CB503000DD972;0xB45CB503000DDCEA;0xB45CB503000DDD1A;0xB45CB503000DDBAA;0xB45CB503000DDBAE;0xB45CB503000DDC5E;0xB45CB503000DDC22;0xB45CB503000DDCD2;0xB45CB503000DDC5A
diff --git a/data/gpu_serial/572B7G4.txt b/data/gpu_serial/572B7G4.txt
deleted file mode 100644
index 61058b4..0000000
--- a/data/gpu_serial/572B7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-572B7G4
-Slot.38: B45C:B503:000D:D576
-Slot.39: B45C:B503:000D:D61E
-Slot.37: B45C:B503:000D:CF72
-Slot.36: B45C:B503:000D:D632
-Slot.32: B45C:B503:000D:C55A
-Slot.33: B45C:B503:000D:D4B2
-Slot.34: B45C:B503:000D:D046
-Slot.35: B45C:B503:000D:CF46
-Slot.31: B45C:B503:000D:D60A
-Slot.40: B45C:B503:000D:C562
-GUID: 0xB45CB503000DD576;0xB45CB503000DD61E;0xB45CB503000DCF72;0xB45CB503000DD632;0xB45CB503000DC55A;0xB45CB503000DD4B2;0xB45CB503000DD046;0xB45CB503000DCF46;0xB45CB503000DD60A;0xB45CB503000DC562
diff --git a/data/gpu_serial/5BZ7HG4.txt b/data/gpu_serial/5BZ7HG4.txt
deleted file mode 100644
index 918203d..0000000
--- a/data/gpu_serial/5BZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-5BZ7HG4
-Slot.38: 3825:F303:0084:FE62
-Slot.39: 3825:F303:0084:FDD6
-Slot.37: 3825:F303:0084:FDB2
-Slot.36: 3825:F303:0084:FDCE
-Slot.32: 3825:F303:0084:FE5A
-Slot.33: 3825:F303:0084:FE66
-Slot.34: 3825:F303:0084:FE6A
-Slot.35: 3825:F303:0084:FDC2
-Slot.31: 3825:F303:0084:FE7A
-Slot.40: 3825:F303:0084:FE52
-GUID: 0x3825F3030084FE62;0x3825F3030084FDD6;0x3825F3030084FDB2;0x3825F3030084FDCE;0x3825F3030084FE5A;0x3825F3030084FE66;0x3825F3030084FE6A;0x3825F3030084FDC2;0x3825F3030084FE7A;0x3825F3030084FE52
diff --git a/data/gpu_serial/5GZ7HG4.txt b/data/gpu_serial/5GZ7HG4.txt
deleted file mode 100644
index b4d25f2..0000000
--- a/data/gpu_serial/5GZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-5GZ7HG4
-Slot.38: 3825:F303:0084:FA52
-Slot.39: 3825:F303:0084:FB46
-Slot.37: 3825:F303:0084:FB7A
-Slot.36: 3825:F303:0084:FB86
-Slot.32: 3825:F303:0084:FB4E
-Slot.33: 3825:F303:0084:FB52
-Slot.34: 3825:F303:0084:F6B6
-Slot.35: 3825:F303:0084:F796
-Slot.31: 3825:F303:0084:F832
-Slot.40: 3825:F303:0084:F8EE
-GUID: 0x3825F3030084FA52;0x3825F3030084FB46;0x3825F3030084FB7A;0x3825F3030084FB86;0x3825F3030084FB4E;0x3825F3030084FB52;0x3825F3030084F6B6;0x3825F3030084F796;0x3825F3030084F832;0x3825F3030084F8EE
diff --git a/data/gpu_serial/5MYCZC4.txt b/data/gpu_serial/5MYCZC4.txt
deleted file mode 100644
index afbd146..0000000
--- a/data/gpu_serial/5MYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-5MYCZC4
-Slot.38: 7C8C:0903:00E4:DE9E
-Slot.39: 7C8C:0903:00E4:DEDE
-Slot.37: 7C8C:0903:00E4:DE96
-Slot.36: 7C8C:0903:00E4:DF42
-Slot.32: 7C8C:0903:00E4:DE86
-Slot.33: 7C8C:0903:00E4:DED2
-Slot.34: 7C8C:0903:00E4:ED06
-Slot.35: 7C8C:0903:00E4:DF3E
-Slot.31: 7C8C:0903:00E4:DEEA
-Slot.40: 7C8C:0903:00E4:DED6
-GUID: 0x7C8C090300E4DE9E;0x7C8C090300E4DEDE;0x7C8C090300E4DE96;0x7C8C090300E4DF42;0x7C8C090300E4DE86;0x7C8C090300E4DED2;0x7C8C090300E4ED06;0x7C8C090300E4DF3E;0x7C8C090300E4DEEA;0x7C8C090300E4DED6
diff --git a/data/gpu_serial/5NYCZC4.txt b/data/gpu_serial/5NYCZC4.txt
deleted file mode 100644
index 511b165..0000000
--- a/data/gpu_serial/5NYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-5NYCZC4
-Slot.38: 3825:F303:00C4:0230
-Slot.39: 3825:F303:00C4:0FA4
-Slot.37: 3825:F303:00C4:023C
-Slot.36: 3825:F303:00C4:0EB4
-Slot.32: 3825:F303:00C4:0FB0
-Slot.33: 3825:F303:00C4:0244
-Slot.34: 3825:F303:00C4:0FA0
-Slot.35: 3825:F303:00C4:0F90
-Slot.31: 3825:F303:00C4:0FA8
-Slot.40: 3825:F303:00C4:0F78
-GUID: 0x3825F30300C40230;0x3825F30300C40FA4;0x3825F30300C4023C;0x3825F30300C40EB4;0x3825F30300C40FB0;0x3825F30300C40244;0x3825F30300C40FA0;0x3825F30300C40F90;0x3825F30300C40FA8;0x3825F30300C40F78
diff --git a/data/gpu_serial/5PRS3H4.txt b/data/gpu_serial/5PRS3H4.txt
deleted file mode 100644
index c303ea5..0000000
--- a/data/gpu_serial/5PRS3H4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-5PRS3H4
-Slot.38: 605E:6503:00EE:17D4
-Slot.39: 605E:6503:00EE:17B0
-Slot.37: 605E:6503:00EE:1764
-Slot.36: 605E:6503:00EE:1808
-Slot.32: 605E:6503:00EE:1738
-Slot.33: 605E:6503:00EE:17F8
-Slot.34: 605E:6503:00EE:1790
-Slot.35: 605E:6503:00EE:17CC
-Slot.31: 605E:6503:00EE:17E4
-Slot.40: 605E:6503:00EE:17C8
-GUID: 0x605E650300EE17D4;0x605E650300EE17B0;0x605E650300EE1764;0x605E650300EE1808;0x605E650300EE1738;0x605E650300EE17F8;0x605E650300EE1790;0x605E650300EE17CC;0x605E650300EE17E4;0x605E650300EE17C8
diff --git a/data/gpu_serial/5V48HG4.txt b/data/gpu_serial/5V48HG4.txt
deleted file mode 100644
index 21fb784..0000000
--- a/data/gpu_serial/5V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-5V48HG4
-Slot.38: 605E:6503:00EE:2068
-Slot.39: 605E:6503:00EE:2070
-Slot.37: B45C:B503:000D:C4C2
-Slot.36: B45C:B503:000D:C4C6
-Slot.32: B45C:B503:000D:C4DE
-Slot.33: B45C:B503:000D:C4A6
-Slot.34: 605E:6503:00EE:1F2C
-Slot.35: B45C:B503:000D:C4EA
-Slot.31: 605E:6503:00EE:1F84
-Slot.40: 605E:6503:00EE:207C
-GUID: 0x605E650300EE2068;0x605E650300EE2070;0xB45CB503000DC4C2;0xB45CB503000DC4C6;0xB45CB503000DC4DE;0xB45CB503000DC4A6;0x605E650300EE1F2C;0xB45CB503000DC4EA;0x605E650300EE1F84;0x605E650300EE207C
diff --git a/data/gpu_serial/5Y48HG4.txt b/data/gpu_serial/5Y48HG4.txt
deleted file mode 100644
index 5e55d0f..0000000
--- a/data/gpu_serial/5Y48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-5Y48HG4
-Slot.38: B45C:B503:000D:C426
-Slot.39: 605E:6503:00EE:209C
-Slot.37: B45C:B503:000D:C416
-Slot.36: 605E:6503:00EE:2004
-Slot.32: 605E:6503:00EE:20A4
-Slot.33: 605E:6503:00EE:2030
-Slot.34: 605E:6503:00EE:20A0
-Slot.35: 605E:6503:00EE:203C
-Slot.31: 605E:6503:00EE:2098
-Slot.40: 605E:6503:00EE:1F08
-GUID: 0xB45CB503000DC426;0x605E650300EE209C;0xB45CB503000DC416;0x605E650300EE2004;0x605E650300EE20A4;0x605E650300EE2030;0x605E650300EE20A0;0x605E650300EE203C;0x605E650300EE2098;0x605E650300EE1F08
diff --git a/data/gpu_serial/66Z7HG4.txt b/data/gpu_serial/66Z7HG4.txt
deleted file mode 100644
index a2f70eb..0000000
--- a/data/gpu_serial/66Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-66Z7HG4
-Slot.38: B45C:B503:000D:CC2E
-Slot.39: B45C:B503:000D:CBFA
-Slot.37: B45C:B503:000D:CE22
-Slot.36: B45C:B503:000D:CE1E
-Slot.32: B45C:B503:000D:CC06
-Slot.33: B45C:B503:000D:CC12
-Slot.34: B45C:B503:000D:CD52
-Slot.35: B45C:B503:000D:CDF6
-Slot.31: B45C:B503:000D:CDE6
-Slot.40: B45C:B503:000D:CD3A
-GUID: 0xB45CB503000DCC2E;0xB45CB503000DCBFA;0xB45CB503000DCE22;0xB45CB503000DCE1E;0xB45CB503000DCC06;0xB45CB503000DCC12;0xB45CB503000DCD52;0xB45CB503000DCDF6;0xB45CB503000DCDE6;0xB45CB503000DCD3A
diff --git a/data/gpu_serial/68Z7HG4.txt b/data/gpu_serial/68Z7HG4.txt
deleted file mode 100644
index e78e72e..0000000
--- a/data/gpu_serial/68Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-68Z7HG4
-Slot.38: B45C:B503:000D:D7F2
-Slot.39: B45C:B503:000D:D7DE
-Slot.37: B45C:B503:000D:D852
-Slot.36: B45C:B503:000D:D812
-Slot.32: B45C:B503:000D:D76A
-Slot.33: B45C:B503:000D:D75A
-Slot.34: B45C:B503:000D:D856
-Slot.35: B45C:B503:000D:D82E
-Slot.31: B45C:B503:000D:D7FA
-Slot.40: B45C:B503:000D:D81A
-GUID: 0xB45CB503000DD7F2;0xB45CB503000DD7DE;0xB45CB503000DD852;0xB45CB503000DD812;0xB45CB503000DD76A;0xB45CB503000DD75A;0xB45CB503000DD856;0xB45CB503000DD82E;0xB45CB503000DD7FA;0xB45CB503000DD81A
diff --git a/data/gpu_serial/69Z7HG4.txt b/data/gpu_serial/69Z7HG4.txt
deleted file mode 100644
index 7142405..0000000
--- a/data/gpu_serial/69Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-69Z7HG4
-Slot.38: 3825:F303:0085:00AE
-Slot.39: 3825:F303:0085:037A
-Slot.37: 3825:F303:0085:03C2
-Slot.36: 3825:F303:0085:03E2
-Slot.32: 3825:F303:0085:037E
-Slot.33: 3825:F303:0085:038A
-Slot.34: 3825:F303:0085:0386
-Slot.35: 3825:F303:0085:03B6
-Slot.31: 3825:F303:0085:03DE
-Slot.40: 3825:F303:0085:03E6
-GUID: 0x3825F303008500AE;0x3825F3030085037A;0x3825F303008503C2;0x3825F303008503E2;0x3825F3030085037E;0x3825F3030085038A;0x3825F30300850386;0x3825F303008503B6;0x3825F303008503DE;0x3825F303008503E6
diff --git a/data/gpu_serial/6GZ7HG4.txt b/data/gpu_serial/6GZ7HG4.txt
deleted file mode 100644
index a52a7df..0000000
--- a/data/gpu_serial/6GZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-6GZ7HG4
-Slot.38: 3825:F303:0085:0116
-Slot.39: 3825:F303:0085:0222
-Slot.37: 3825:F303:0085:0106
-Slot.36: 3825:F303:0085:01AA
-Slot.32: 3825:F303:0085:010E
-Slot.33: 3825:F303:0085:026E
-Slot.34: 3825:F303:0085:026A
-Slot.35: 3825:F303:0085:01B2
-Slot.31: 3825:F303:0085:021E
-Slot.40: 3825:F303:0085:011E
-GUID: 0x3825F30300850116;0x3825F30300850222;0x3825F30300850106;0x3825F303008501AA;0x3825F3030085010E;0x3825F3030085026E;0x3825F3030085026A;0x3825F303008501B2;0x3825F3030085021E;0x3825F3030085011E
diff --git a/data/gpu_serial/6T48HG4.txt b/data/gpu_serial/6T48HG4.txt
deleted file mode 100644
index 21b147d..0000000
--- a/data/gpu_serial/6T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-6T48HG4
-Slot.38: B45C:B503:000D:C5E2
-Slot.39: B45C:B503:000D:C622
-Slot.37: 605E:6503:00EE:1C0C
-Slot.36: 605E:6503:00EE:1A4C
-Slot.32: 605E:6503:00EE:1A88
-Slot.33: 605E:6503:00EE:1C58
-Slot.34: 605E:6503:00EE:1DCC
-Slot.35: 605E:6503:00EE:1F98
-Slot.31: B45C:B503:000D:C612
-Slot.40: 605E:6503:00EE:1C54
-GUID: 0xB45CB503000DC5E2;0xB45CB503000DC622;0x605E650300EE1C0C;0x605E650300EE1A4C;0x605E650300EE1A88;0x605E650300EE1C58;0x605E650300EE1DCC;0x605E650300EE1F98;0xB45CB503000DC612;0x605E650300EE1C54
diff --git a/data/gpu_serial/6XZCZC4.txt b/data/gpu_serial/6XZCZC4.txt
deleted file mode 100644
index a4f8f01..0000000
--- a/data/gpu_serial/6XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-6XZCZC4
-Slot.38: 3825:F303:00C4:0874
-Slot.39: 3825:F303:00C4:035C
-Slot.37: 3825:F303:00C4:1450
-Slot.36: 3825:F303:00C4:08DC
-Slot.32: 3825:F303:00C4:086C
-Slot.33: 3825:F303:00C4:0884
-Slot.34: 3825:F303:00C4:153C
-Slot.35: 3825:F303:00C4:0688
-Slot.31: 3825:F303:00C4:096C
-Slot.40: 3825:F303:00C4:0870
-GUID: 0x3825F30300C40874;0x3825F30300C4035C;0x3825F30300C41450;0x3825F30300C408DC;0x3825F30300C4086C;0x3825F30300C40884;0x3825F30300C4153C;0x3825F30300C40688;0x3825F30300C4096C;0x3825F30300C40870
diff --git a/data/gpu_serial/76Z7HG4.txt b/data/gpu_serial/76Z7HG4.txt
deleted file mode 100644
index 0b86caf..0000000
--- a/data/gpu_serial/76Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-76Z7HG4
-Slot.38: 3825:F303:0084:FAD2
-Slot.39: 3825:F303:0084:FA5A
-Slot.37: 3825:F303:0084:FA6A
-Slot.36: 3825:F303:0084:FA4A
-Slot.32: 3825:F303:0084:FACE
-Slot.33: 3825:F303:0084:FA56
-Slot.34: 3825:F303:0084:F77E
-Slot.35: 3825:F303:0084:FAEE
-Slot.31: 3825:F303:0084:FAC6
-Slot.40: 3825:F303:0084:F722
-GUID: 0x3825F3030084FAD2;0x3825F3030084FA5A;0x3825F3030084FA6A;0x3825F3030084FA4A;0x3825F3030084FACE;0x3825F3030084FA56;0x3825F3030084F77E;0x3825F3030084FAEE;0x3825F3030084FAC6;0x3825F3030084F722
diff --git a/data/gpu_serial/77Z7HG4.txt b/data/gpu_serial/77Z7HG4.txt
deleted file mode 100644
index 1c9ceae..0000000
--- a/data/gpu_serial/77Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-77Z7HG4
-Slot.38: 3825:F303:0085:0472
-Slot.39: 3825:F303:0085:05D2
-Slot.37: 3825:F303:0085:049E
-Slot.36: 3825:F303:0085:048E
-Slot.32: 3825:F303:0085:05EA
-Slot.33: 3825:F303:0085:035A
-Slot.34: 3825:F303:0085:034A
-Slot.35: 3825:F303:0085:047A
-Slot.31: 3825:F303:0085:0602
-Slot.40: 3825:F303:0085:0622
-GUID: 0x3825F30300850472;0x3825F303008505D2;0x3825F3030085049E;0x3825F3030085048E;0x3825F303008505EA;0x3825F3030085035A;0x3825F3030085034A;0x3825F3030085047A;0x3825F30300850602;0x3825F30300850622
diff --git a/data/gpu_serial/78Z7HG4.txt b/data/gpu_serial/78Z7HG4.txt
deleted file mode 100644
index 53fd15d..0000000
--- a/data/gpu_serial/78Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-78Z7HG4
-Slot.38: B45C:B503:000D:D7A6
-Slot.39: B45C:B503:000D:CF76
-Slot.37: B45C:B503:000D:DB72
-Slot.36: B45C:B503:000D:DB4E
-Slot.32: B45C:B503:000D:D7B6
-Slot.33: B45C:B503:000D:D71A
-Slot.34: B45C:B503:000D:CF7E
-Slot.35: B45C:B503:000D:CF66
-Slot.31: B45C:B503:000D:CF2A
-Slot.40: B45C:B503:000D:DB4A
-GUID: 0xB45CB503000DD7A6;0xB45CB503000DCF76;0xB45CB503000DDB72;0xB45CB503000DDB4E;0xB45CB503000DD7B6;0xB45CB503000DD71A;0xB45CB503000DCF7E;0xB45CB503000DCF66;0xB45CB503000DCF2A;0xB45CB503000DDB4A
diff --git a/data/gpu_serial/79Z7HG4.txt b/data/gpu_serial/79Z7HG4.txt
deleted file mode 100644
index 2e6d9e8..0000000
--- a/data/gpu_serial/79Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-79Z7HG4
-Slot.38: B45C:B503:000D:C5AE
-Slot.39: B45C:B503:000D:D9BE
-Slot.37: B45C:B503:000D:D836
-Slot.36: B45C:B503:000D:D83E
-Slot.32: B45C:B503:000D:D8B6
-Slot.33: B45C:B503:000D:D8BE
-Slot.34: B45C:B503:000D:D9C6
-Slot.35: B45C:B503:000D:D9FA
-Slot.31: B45C:B503:000D:D9EA
-Slot.40: B45C:B503:000D:D9DA
-GUID: 0xB45CB503000DC5AE;0xB45CB503000DD9BE;0xB45CB503000DD836;0xB45CB503000DD83E;0xB45CB503000DD8B6;0xB45CB503000DD8BE;0xB45CB503000DD9C6;0xB45CB503000DD9FA;0xB45CB503000DD9EA;0xB45CB503000DD9DA
diff --git a/data/gpu_serial/7BZ7HG4.txt b/data/gpu_serial/7BZ7HG4.txt
deleted file mode 100644
index 969d182..0000000
--- a/data/gpu_serial/7BZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-7BZ7HG4
-Slot.38: B45C:B503:000D:DACE
-Slot.39: B45C:B503:0039:DEDA
-Slot.37: B45C:B503:000D:DAA2
-Slot.36: B45C:B503:000D:DAF6
-Slot.32: B45C:B503:000D:DAAE
-Slot.33: B45C:B503:000D:DACA
-Slot.34: B45C:B503:000D:DA66
-Slot.35: B45C:B503:0039:DEC2
-Slot.31: B45C:B503:0039:DECA
-Slot.40: B45C:B503:000D:DAB2
-GUID: 0xB45CB503000DDACE;0xB45CB5030039DEDA;0xB45CB503000DDAA2;0xB45CB503000DDAF6;0xB45CB503000DDAAE;0xB45CB503000DDACA;0xB45CB503000DDA66;0xB45CB5030039DEC2;0xB45CB5030039DECA;0xB45CB503000DDAB2
diff --git a/data/gpu_serial/7F8XHG4.txt b/data/gpu_serial/7F8XHG4.txt
deleted file mode 100644
index 606152f..0000000
--- a/data/gpu_serial/7F8XHG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-7F8XHG4
-Slot.38: 605E:6503:00EE:1500
-Slot.39: 605E:6503:00EE:14F0
-Slot.37: 605E:6503:00EE:14CC
-Slot.36: 605E:6503:00EE:1494
-Slot.32: 605E:6503:00EE:14E8
-Slot.33: 605E:6503:00EE:142C
-Slot.34: 605E:6503:00EE:1470
-Slot.35: 605E:6503:00EE:1478
-Slot.31: 605E:6503:00EE:14E0
-Slot.40: 605E:6503:00EE:147C
-GUID: 0x605E650300EE1500;0x605E650300EE14F0;0x605E650300EE14CC;0x605E650300EE1494;0x605E650300EE14E8;0x605E650300EE142C;0x605E650300EE1470;0x605E650300EE1478;0x605E650300EE14E0;0x605E650300EE147C
diff --git a/data/gpu_serial/7G4F7G4.txt b/data/gpu_serial/7G4F7G4.txt
deleted file mode 100644
index c2cb70f..0000000
--- a/data/gpu_serial/7G4F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-7G4F7G4
-Slot.38: B45C:B503:000D:CD66
-Slot.39: B45C:B503:000D:CD6A
-Slot.37: B45C:B503:000D:CD7A
-Slot.36: B45C:B503:000D:CD72
-Slot.32: B45C:B503:000D:CD1E
-Slot.33: B45C:B503:000D:CCFE
-Slot.34: B45C:B503:000D:CD6E
-Slot.35: B45C:B503:000D:CD2A
-Slot.31: B45C:B503:000D:CD5E
-Slot.40: B45C:B503:000D:CD56
-GUID: 0xB45CB503000DCD66;0xB45CB503000DCD6A;0xB45CB503000DCD7A;0xB45CB503000DCD72;0xB45CB503000DCD1E;0xB45CB503000DCCFE;0xB45CB503000DCD6E;0xB45CB503000DCD2A;0xB45CB503000DCD5E;0xB45CB503000DCD56
diff --git a/data/gpu_serial/7MYCZC4.txt b/data/gpu_serial/7MYCZC4.txt
deleted file mode 100644
index 2881d8b..0000000
--- a/data/gpu_serial/7MYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-7MYCZC4
-Slot.38: 7C8C:0903:00E4:DE62
-Slot.39: 7C8C:0903:00E4:DE4A
-Slot.37: 7C8C:0903:00E4:DE4E
-Slot.36: 7C8C:0903:00E4:ECFA
-Slot.32: 7C8C:0903:00E4:ECE2
-Slot.33: 7C8C:0903:00E4:DE52
-Slot.34: 7C8C:0903:00E4:DE76
-Slot.35: 7C8C:0903:00E4:ECDE
-Slot.31: 7C8C:0903:00E4:DE5A
-Slot.40: 7C8C:0903:00E4:ED2E
-GUID: 0x7C8C090300E4DE62;0x7C8C090300E4DE4A;0x7C8C090300E4DE4E;0x7C8C090300E4ECFA;0x7C8C090300E4ECE2;0x7C8C090300E4DE52;0x7C8C090300E4DE76;0x7C8C090300E4ECDE;0x7C8C090300E4DE5A;0x7C8C090300E4ED2E
diff --git a/data/gpu_serial/7S48HG4.txt b/data/gpu_serial/7S48HG4.txt
deleted file mode 100644
index 9172d73..0000000
--- a/data/gpu_serial/7S48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-7S48HG4
-Slot.38: B45C:B503:000D:C6E6
-Slot.39: B45C:B503:000D:C6CA
-Slot.37: 605E:6503:00EE:16D8
-Slot.36: 605E:6503:00EE:160C
-Slot.32: B45C:B503:000D:C4E6
-Slot.33: 605E:6503:00EE:161C
-Slot.34: 605E:6503:00EE:1384
-Slot.35: 605E:6503:00EE:15F8
-Slot.31: B45C:B503:000D:C4FE
-Slot.40: 605E:6503:00EE:132C
-GUID: 0xB45CB503000DC6E6;0xB45CB503000DC6CA;0x605E650300EE16D8;0x605E650300EE160C;0xB45CB503000DC4E6;0x605E650300EE161C;0x605E650300EE1384;0x605E650300EE15F8;0xB45CB503000DC4FE;0x605E650300EE132C
diff --git a/data/gpu_serial/7T48HG4.txt b/data/gpu_serial/7T48HG4.txt
deleted file mode 100644
index 19aeec5..0000000
--- a/data/gpu_serial/7T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-7T48HG4
-Slot.38: 605E:6503:0075:2D64
-Slot.39: 605E:6503:00EE:1924
-Slot.37: 605E:6503:00EE:19D0
-Slot.36: 605E:6503:00EE:1AFC
-Slot.32: 605E:6503:00EE:1A24
-Slot.33: 605E:6503:00EE:18B0
-Slot.34: 605E:6503:0075:2EC4
-Slot.35: 605E:6503:0075:2D30
-Slot.31: 605E:6503:00EE:1C4C
-Slot.40: 605E:6503:0075:2B78
-GUID: 0x605E650300752D64;0x605E650300EE1924;0x605E650300EE19D0;0x605E650300EE1AFC;0x605E650300EE1A24;0x605E650300EE18B0;0x605E650300752EC4;0x605E650300752D30;0x605E650300EE1C4C;0x605E650300752B78
diff --git a/data/gpu_serial/7XZCZC4.txt b/data/gpu_serial/7XZCZC4.txt
deleted file mode 100644
index 15b1a05..0000000
--- a/data/gpu_serial/7XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-7XZCZC4
-Slot.38: 5000:E603:0068:F498
-Slot.39: 5000:E603:0068:F37C
-Slot.37: 5000:E603:0068:F2B0
-Slot.36: 5000:E603:0068:F418
-Slot.32: 5000:E603:0068:F478
-Slot.33: 5000:E603:0068:F488
-Slot.34: 5000:E603:0068:F3F4
-Slot.35: 5000:E603:0068:F474
-Slot.31: 5000:E603:0068:F2A8
-Slot.40: 5000:E603:0068:F2AC
-GUID: 0x5000E6030068F498;0x5000E6030068F37C;0x5000E6030068F2B0;0x5000E6030068F418;0x5000E6030068F478;0x5000E6030068F488;0x5000E6030068F3F4;0x5000E6030068F474;0x5000E6030068F2A8;0x5000E6030068F2AC
diff --git a/data/gpu_serial/87Z7HG4.txt b/data/gpu_serial/87Z7HG4.txt
deleted file mode 100644
index 0c808cb..0000000
--- a/data/gpu_serial/87Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-87Z7HG4
-Slot.38: B45C:B503:000D:DBCE
-Slot.39: B45C:B503:000D:DCBA
-Slot.37: B45C:B503:000D:DC8E
-Slot.36: B45C:B503:000D:DBBE
-Slot.32: B45C:B503:000D:DC96
-Slot.33: B45C:B503:000D:DD46
-Slot.34: B45C:B503:000D:DC9E
-Slot.35: B45C:B503:000D:DC9A
-Slot.31: B45C:B503:000D:DD4A
-Slot.40: B45C:B503:000D:DAAA
-GUID: 0xB45CB503000DDBCE;0xB45CB503000DDCBA;0xB45CB503000DDC8E;0xB45CB503000DDBBE;0xB45CB503000DDC96;0xB45CB503000DDD46;0xB45CB503000DDC9E;0xB45CB503000DDC9A;0xB45CB503000DDD4A;0xB45CB503000DDAAA
diff --git a/data/gpu_serial/88Z7HG4.txt b/data/gpu_serial/88Z7HG4.txt
deleted file mode 100644
index ee35a16..0000000
--- a/data/gpu_serial/88Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-88Z7HG4
-Slot.38: 3825:F303:0085:032A
-Slot.39: 3825:F303:0085:042A
-Slot.37: 3825:F303:0085:029A
-Slot.36: 3825:F303:0085:057A
-Slot.32: 3825:F303:0085:0476
-Slot.33: 3825:F303:0085:047E
-Slot.34: 3825:F303:0085:0342
-Slot.35: 3825:F303:0085:0336
-Slot.31: 3825:F303:0085:0412
-Slot.40: 3825:F303:0085:050A
-GUID: 0x3825F3030085032A;0x3825F3030085042A;0x3825F3030085029A;0x3825F3030085057A;0x3825F30300850476;0x3825F3030085047E;0x3825F30300850342;0x3825F30300850336;0x3825F30300850412;0x3825F3030085050A
diff --git a/data/gpu_serial/89Z7HG4.txt b/data/gpu_serial/89Z7HG4.txt
deleted file mode 100644
index f9c02a8..0000000
--- a/data/gpu_serial/89Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-89Z7HG4
-Slot.38: B45C:B503:000D:DB62
-Slot.39: B45C:B503:000D:DB42
-Slot.37: B45C:B503:000D:DB56
-Slot.36: B45C:B503:000D:DB46
-Slot.32: B45C:B503:000D:D9CE
-Slot.33: B45C:B503:000D:DB6E
-Slot.34: B45C:B503:000D:DB86
-Slot.35: B45C:B503:000D:DB9E
-Slot.31: B45C:B503:000D:D822
-Slot.40: B45C:B503:000D:DB3E
-GUID: 0xB45CB503000DDB62;0xB45CB503000DDB42;0xB45CB503000DDB56;0xB45CB503000DDB46;0xB45CB503000DD9CE;0xB45CB503000DDB6E;0xB45CB503000DDB86;0xB45CB503000DDB9E;0xB45CB503000DD822;0xB45CB503000DDB3E
diff --git a/data/gpu_serial/8BZ7HG4.txt b/data/gpu_serial/8BZ7HG4.txt
deleted file mode 100644
index 9abf8f5..0000000
--- a/data/gpu_serial/8BZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-8BZ7HG4
-Slot.38: B45C:B503:000D:DAEA
-Slot.39: B45C:B503:000D:DA2A
-Slot.37: B45C:B503:000D:DA22
-Slot.36: B45C:B503:000D:DB02
-Slot.32: B45C:B503:000D:DADE
-Slot.33: B45C:B503:000D:DA3E
-Slot.34: B45C:B503:000D:DA32
-Slot.35: B45C:B503:000D:DA36
-Slot.31: B45C:B503:000D:DAF2
-Slot.40: B45C:B503:000D:DB0A
-GUID: 0xB45CB503000DDAEA;0xB45CB503000DDA2A;0xB45CB503000DDA22;0xB45CB503000DDB02;0xB45CB503000DDADE;0xB45CB503000DDA3E;0xB45CB503000DDA32;0xB45CB503000DDA36;0xB45CB503000DDAF2;0xB45CB503000DDB0A
diff --git a/data/gpu_serial/8F8XHG4.txt b/data/gpu_serial/8F8XHG4.txt
deleted file mode 100644
index e45fda2..0000000
--- a/data/gpu_serial/8F8XHG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-8F8XHG4
-Slot.38: 605E:6503:0093:51BC
-Slot.39: B45C:B503:000D:C412
-Slot.37: 605E:6503:00EE:20C4
-Slot.36: B45C:B503:000D:C3A6
-Slot.32: 605E:6503:0093:5100
-Slot.33: 605E:6503:0093:5198
-Slot.34: 605E:6503:0093:510C
-Slot.35: 605E:6503:0093:5120
-Slot.31: B45C:B503:000D:C3CA
-Slot.40: B45C:B503:000D:C39E
-GUID: 0x605E6503009351BC;0xB45CB503000DC412;0x605E650300EE20C4;0xB45CB503000DC3A6;0x605E650300935100;0x605E650300935198;0x605E65030093510C;0x605E650300935120;0xB45CB503000DC3CA;0xB45CB503000DC39E
diff --git a/data/gpu_serial/8GZ7HG4.txt b/data/gpu_serial/8GZ7HG4.txt
deleted file mode 100644
index 5a0b995..0000000
--- a/data/gpu_serial/8GZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-8GZ7HG4
-Slot.38: B45C:B503:000D:DCA6
-Slot.39: B45C:B503:000D:DC1A
-Slot.37: B45C:B503:000D:DD3A
-Slot.36: B45C:B503:000D:DCBE
-Slot.32: B45C:B503:000D:DC16
-Slot.33: B45C:B503:000D:DC0A
-Slot.34: B45C:B503:000D:E1B2
-Slot.35: B45C:B503:000D:DC82
-Slot.31: B45C:B503:000D:DCA2
-Slot.40: B45C:B503:000D:DCDA
-GUID: 0xB45CB503000DDCA6;0xB45CB503000DDC1A;0xB45CB503000DDD3A;0xB45CB503000DDCBE;0xB45CB503000DDC16;0xB45CB503000DDC0A;0xB45CB503000DE1B2;0xB45CB503000DDC82;0xB45CB503000DDCA2;0xB45CB503000DDCDA
diff --git a/data/gpu_serial/8T48HG4.txt b/data/gpu_serial/8T48HG4.txt
deleted file mode 100644
index f1c2292..0000000
--- a/data/gpu_serial/8T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-8T48HG4
-Slot.38: B45C:B503:000D:E36A
-Slot.39: 605E:6503:00EE:201C
-Slot.37: B45C:B503:000D:C43E
-Slot.36: B45C:B503:000D:C536
-Slot.32: 605E:6503:00EE:2008
-Slot.33: B45C:B503:0039:DEF2
-Slot.34: 605E:6503:00EE:1FF8
-Slot.35: B45C:B503:000D:E356
-Slot.31: B45C:B503:0039:DEBA
-Slot.40: B45C:B503:000D:C432
-GUID: 0xB45CB503000DE36A;0x605E650300EE201C;0xB45CB503000DC43E;0xB45CB503000DC536;0x605E650300EE2008;0xB45CB5030039DEF2;0x605E650300EE1FF8;0xB45CB503000DE356;0xB45CB5030039DEBA;0xB45CB503000DC432
diff --git a/data/gpu_serial/8V48HG4.txt b/data/gpu_serial/8V48HG4.txt
deleted file mode 100644
index 28f42e4..0000000
--- a/data/gpu_serial/8V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-8V48HG4
-Slot.38: 605E:6503:0075:2D9C
-Slot.39: 605E:6503:0075:2934
-Slot.37: 605E:6503:0075:2DC8
-Slot.36: 605E:6503:0075:2EB8
-Slot.32: 605E:6503:00EE:1AB8
-Slot.33: 605E:6503:0075:2CEC
-Slot.34: 605E:6503:0075:2DA0
-Slot.35: 605E:6503:00EE:1AD0
-Slot.31: 605E:6503:00EE:1A78
-Slot.40: 605E:6503:00EE:1A6C
-GUID: 0x605E650300752D9C;0x605E650300752934;0x605E650300752DC8;0x605E650300752EB8;0x605E650300EE1AB8;0x605E650300752CEC;0x605E650300752DA0;0x605E650300EE1AD0;0x605E650300EE1A78;0x605E650300EE1A6C
diff --git a/data/gpu_serial/8WZCZC4.txt b/data/gpu_serial/8WZCZC4.txt
deleted file mode 100644
index ef250c3..0000000
--- a/data/gpu_serial/8WZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-8WZCZC4
-Slot.38: 7C8C:0903:00A5:06B0
-Slot.39: 7C8C:0903:00A5:0874
-Slot.37: 7C8C:0903:00A5:0894
-Slot.36: 7C8C:0903:00A5:089C
-Slot.32: 7C8C:0903:00A5:0884
-Slot.33: 7C8C:0903:00A5:08A4
-Slot.34: 7C8C:0903:00A4:E5C4
-Slot.35: 7C8C:0903:00A5:0820
-Slot.31: 7C8C:0903:00A5:08B8
-Slot.40: 7C8C:0903:00A5:0880
-GUID: 0x7C8C090300A506B0;0x7C8C090300A50874;0x7C8C090300A50894;0x7C8C090300A5089C;0x7C8C090300A50884;0x7C8C090300A508A4;0x7C8C090300A4E5C4;0x7C8C090300A50820;0x7C8C090300A508B8;0x7C8C090300A50880
diff --git a/data/gpu_serial/96Z7HG4.txt b/data/gpu_serial/96Z7HG4.txt
deleted file mode 100644
index 73778be..0000000
--- a/data/gpu_serial/96Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-96Z7HG4
-Slot.38: B45C:B503:000D:E3F2
-Slot.39: B45C:B503:000D:E406
-Slot.37: B45C:B503:000D:E2FE
-Slot.36: B45C:B503:000D:E426
-Slot.32: B45C:B503:000D:E31A
-Slot.33: B45C:B503:000D:E32E
-Slot.34: B45C:B503:000D:E2F2
-Slot.35: B45C:B503:000D:E3EE
-Slot.31: B45C:B503:000D:E326
-Slot.40: B45C:B503:000D:E3A6
-GUID: 0xB45CB503000DE3F2;0xB45CB503000DE406;0xB45CB503000DE2FE;0xB45CB503000DE426;0xB45CB503000DE31A;0xB45CB503000DE32E;0xB45CB503000DE2F2;0xB45CB503000DE3EE;0xB45CB503000DE326;0xB45CB503000DE3A6
diff --git a/data/gpu_serial/972B7G4.txt b/data/gpu_serial/972B7G4.txt
deleted file mode 100644
index d6911b4..0000000
--- a/data/gpu_serial/972B7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-972B7G4
-Slot.38: B45C:B503:000D:E1F6
-Slot.39: B45C:B503:000D:E1FE
-Slot.37: B45C:B503:000D:E282
-Slot.36: B45C:B503:000D:E1D6
-Slot.32: B45C:B503:000D:DC86
-Slot.33: B45C:B503:000D:E1DE
-Slot.34: B45C:B503:000D:DC2E
-Slot.35: B45C:B503:000D:E25E
-Slot.31: B45C:B503:000D:E27E
-Slot.40: B45C:B503:000D:DBFE
-GUID: 0xB45CB503000DE1F6;0xB45CB503000DE1FE;0xB45CB503000DE282;0xB45CB503000DE1D6;0xB45CB503000DDC86;0xB45CB503000DE1DE;0xB45CB503000DDC2E;0xB45CB503000DE25E;0xB45CB503000DE27E;0xB45CB503000DDBFE
diff --git a/data/gpu_serial/98Z7HG4.txt b/data/gpu_serial/98Z7HG4.txt
deleted file mode 100644
index becaa45..0000000
--- a/data/gpu_serial/98Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-98Z7HG4
-Slot.38: 3825:F303:0085:044A
-Slot.39: 3825:F303:0085:0752
-Slot.37: 3825:F303:0085:074E
-Slot.36: B45C:B503:000D:D762
-Slot.32: B45C:B503:000D:D78E
-Slot.33: B45C:B503:000D:D77A
-Slot.34: 3825:F303:0085:0746
-Slot.35: 3825:F303:0085:06DE
-Slot.31: 3825:F303:0085:034E
-Slot.40: 3825:F303:0085:0732
-GUID: 0x3825F3030085044A;0x3825F30300850752;0x3825F3030085074E;0xB45CB503000DD762;0xB45CB503000DD78E;0xB45CB503000DD77A;0x3825F30300850746;0x3825F303008506DE;0x3825F3030085034E;0x3825F30300850732
diff --git a/data/gpu_serial/992B7G4.txt b/data/gpu_serial/992B7G4.txt
deleted file mode 100644
index 10f6087..0000000
--- a/data/gpu_serial/992B7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-992B7G4
-Slot.38: B45C:B503:000D:D7C6
-Slot.39: B45C:B503:000D:D7BE
-Slot.37: B45C:B503:000D:D89E
-Slot.36: B45C:B503:000D:D7A2
-Slot.32: B45C:B503:000D:D7BA
-Slot.33: B45C:B503:000D:D566
-Slot.34: B45C:B503:000D:D872
-Slot.35: B45C:B503:000D:D7CA
-Slot.31: B45C:B503:000D:D4F2
-Slot.40: B45C:B503:000D:D7B2
-GUID: 0xB45CB503000DD7C6;0xB45CB503000DD7BE;0xB45CB503000DD89E;0xB45CB503000DD7A2;0xB45CB503000DD7BA;0xB45CB503000DD566;0xB45CB503000DD872;0xB45CB503000DD7CA;0xB45CB503000DD4F2;0xB45CB503000DD7B2
diff --git a/data/gpu_serial/99Z7HG4.txt b/data/gpu_serial/99Z7HG4.txt
deleted file mode 100644
index f6d4027..0000000
--- a/data/gpu_serial/99Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-99Z7HG4
-Slot.38: B45C:B503:000D:D7CE
-Slot.39: B45C:B503:000D:D5CE
-Slot.37: B45C:B503:000D:D602
-Slot.36: B45C:B503:000D:D04E
-Slot.32: B45C:B503:000D:DA06
-Slot.33: B45C:B503:000D:DA02
-Slot.34: B45C:B503:000D:D88E
-Slot.35: B45C:B503:000D:D4A6
-Slot.31: B45C:B503:000D:D8A2
-Slot.40: B45C:B503:000D:D7AE
-GUID: 0xB45CB503000DD7CE;0xB45CB503000DD5CE;0xB45CB503000DD602;0xB45CB503000DD04E;0xB45CB503000DDA06;0xB45CB503000DDA02;0xB45CB503000DD88E;0xB45CB503000DD4A6;0xB45CB503000DD8A2;0xB45CB503000DD7AE
diff --git a/data/gpu_serial/9NYCZC4.txt b/data/gpu_serial/9NYCZC4.txt
deleted file mode 100644
index 2694aff..0000000
--- a/data/gpu_serial/9NYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-9NYCZC4
-Slot.38: 5000:E603:0068:F3E0
-Slot.39: 5000:E603:0068:F3B4
-Slot.37: 5000:E603:0068:F3E4
-Slot.36: 5000:E603:0068:F404
-Slot.32: 5000:E603:0068:F358
-Slot.33: 5000:E603:0068:F3E8
-Slot.34: 5000:E603:0068:F3B8
-Slot.35: 5000:E603:0068:F394
-Slot.31: 5000:E603:0068:F370
-Slot.40: 5000:E603:0068:F364
-GUID: 0x5000E6030068F3E0;0x5000E6030068F3B4;0x5000E6030068F3E4;0x5000E6030068F404;0x5000E6030068F358;0x5000E6030068F3E8;0x5000E6030068F3B8;0x5000E6030068F394;0x5000E6030068F370;0x5000E6030068F364
diff --git a/data/gpu_serial/9V48HG4.txt b/data/gpu_serial/9V48HG4.txt
deleted file mode 100644
index 82e4dc6..0000000
--- a/data/gpu_serial/9V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-9V48HG4
-Slot.38: 605E:6503:00EE:1EB0
-Slot.39: 605E:6503:00EE:1EC0
-Slot.37: 605E:6503:00EE:1E7C
-Slot.36: 605E:6503:00EE:1EB4
-Slot.32: 605E:6503:00EE:1E08
-Slot.33: 605E:6503:00EE:1E34
-Slot.34: 605E:6503:00EE:1E24
-Slot.35: 605E:6503:00EE:1E18
-Slot.31: 605E:6503:00EE:1E00
-Slot.40: 605E:6503:00EE:1DF4
-GUID: 0x605E650300EE1EB0;0x605E650300EE1EC0;0x605E650300EE1E7C;0x605E650300EE1EB4;0x605E650300EE1E08;0x605E650300EE1E34;0x605E650300EE1E24;0x605E650300EE1E18;0x605E650300EE1E00;0x605E650300EE1DF4
diff --git a/data/gpu_serial/B63HZC4.txt b/data/gpu_serial/B63HZC4.txt
deleted file mode 100644
index 62722bd..0000000
--- a/data/gpu_serial/B63HZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-B63HZC4
-Slot.38: 5C25:7303:000C:66CA
-Slot.39: 5C25:7303:000C:3736
-Slot.37: 5C25:7303:000C:6672
-Slot.36: 5C25:7303:000C:680E
-Slot.32: 5C25:7303:000C:6906
-Slot.33: 5C25:7303:000C:185E
-Slot.34: 5C25:7303:000C:36CA
-Slot.35: 5C25:7303:000C:34EA
-Slot.31: 5C25:7303:000C:3622
-Slot.40: 5C25:7303:000C:6676
-GUID: 0x5C257303000C66CA;0x5C257303000C3736;0x5C257303000C6672;0x5C257303000C680E;0x5C257303000C6906;0x5C257303000C185E;0x5C257303000C36CA;0x5C257303000C34EA;0x5C257303000C3622;0x5C257303000C6676
diff --git a/data/gpu_serial/B6Z7HG4.txt b/data/gpu_serial/B6Z7HG4.txt
deleted file mode 100644
index 761cf90..0000000
--- a/data/gpu_serial/B6Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-B6Z7HG4
-Slot.38: B45C:B503:000D:E292
-Slot.39: B45C:B503:000D:E212
-Slot.37: B45C:B503:000D:E252
-Slot.36: B45C:B503:000D:E22E
-Slot.32: B45C:B503:000D:E266
-Slot.33: B45C:B503:000D:E21A
-Slot.34: B45C:B503:000D:E2B2
-Slot.35: B45C:B503:000D:DD5E
-Slot.31: B45C:B503:000D:E25A
-Slot.40: B45C:B503:000D:E26A
-GUID: 0xB45CB503000DE292;0xB45CB503000DE212;0xB45CB503000DE252;0xB45CB503000DE22E;0xB45CB503000DE266;0xB45CB503000DE21A;0xB45CB503000DE2B2;0xB45CB503000DDD5E;0xB45CB503000DE25A;0xB45CB503000DE26A
diff --git a/data/gpu_serial/B7Z7HG4.txt b/data/gpu_serial/B7Z7HG4.txt
deleted file mode 100644
index 43463d7..0000000
--- a/data/gpu_serial/B7Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-B7Z7HG4
-Slot.38: 3825:F303:0085:055E
-Slot.39: 3825:F303:0085:0512
-Slot.37: 3825:F303:0085:06E2
-Slot.36: 3825:F303:0085:0502
-Slot.32: 3825:F303:0085:04AA
-Slot.33: 3825:F303:0085:0506
-Slot.34: 3825:F303:0085:050E
-Slot.35: 3825:F303:0085:046E
-Slot.31: 3825:F303:0085:0756
-Slot.40: 3825:F303:0085:0716
-GUID: 0x3825F3030085055E;0x3825F30300850512;0x3825F303008506E2;0x3825F30300850502;0x3825F303008504AA;0x3825F30300850506;0x3825F3030085050E;0x3825F3030085046E;0x3825F30300850756;0x3825F30300850716
diff --git a/data/gpu_serial/BBZ7HG4.txt b/data/gpu_serial/BBZ7HG4.txt
deleted file mode 100644
index bbc101d..0000000
--- a/data/gpu_serial/BBZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-BBZ7HG4
-Slot.38: B45C:B503:000D:D592
-Slot.39: B45C:B503:000D:CFAE
-Slot.37: B45C:B503:000D:CFC2
-Slot.36: B45C:B503:000D:D64E
-Slot.32: 3825:F303:0085:07DA
-Slot.33: 3825:F303:0085:07E6
-Slot.34: 3825:F303:0085:0736
-Slot.35: 3825:F303:0085:073E
-Slot.31: 3825:F303:0085:07AA
-Slot.40: 3825:F303:0085:0852
-GUID: 0xB45CB503000DD592;0xB45CB503000DCFAE;0xB45CB503000DCFC2;0xB45CB503000DD64E;0x3825F303008507DA;0x3825F303008507E6;0x3825F30300850736;0x3825F3030085073E;0x3825F303008507AA;0x3825F30300850852
diff --git a/data/gpu_serial/BGZ7HG4.txt b/data/gpu_serial/BGZ7HG4.txt
deleted file mode 100644
index 0e67276..0000000
--- a/data/gpu_serial/BGZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-BGZ7HG4
-Slot.38: 3825:F303:0084:FB26
-Slot.39: 3825:F303:0084:FB42
-Slot.37: 3825:F303:0084:FB96
-Slot.36: 3825:F303:0084:FB92
-Slot.32: 3825:F303:0084:FD02
-Slot.33: 3825:F303:0084:FCFA
-Slot.34: 3825:F303:0084:FD0A
-Slot.35: 3825:F303:0084:FBEE
-Slot.31: 3825:F303:0084:FBE6
-Slot.40: 3825:F303:0084:FBEA
-GUID: 0x3825F3030084FB26;0x3825F3030084FB42;0x3825F3030084FB96;0x3825F3030084FB92;0x3825F3030084FD02;0x3825F3030084FCFA;0x3825F3030084FD0A;0x3825F3030084FBEE;0x3825F3030084FBE6;0x3825F3030084FBEA
diff --git a/data/gpu_serial/BH4F7G4.txt b/data/gpu_serial/BH4F7G4.txt
deleted file mode 100644
index e7f55a4..0000000
--- a/data/gpu_serial/BH4F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-BH4F7G4
-Slot.38: B45C:B503:000D:E3E6
-Slot.39: B45C:B503:000D:E3AE
-Slot.37: B45C:B503:000D:E3A2
-Slot.36: B45C:B503:000D:E3D2
-Slot.32: B45C:B503:000D:E38A
-Slot.33: B45C:B503:000D:E392
-Slot.34: B45C:B503:000D:E37E
-Slot.35: B45C:B503:000D:E396
-Slot.31: B45C:B503:000D:E3B2
-Slot.40: B45C:B503:000D:E39E
-GUID: 0xB45CB503000DE3E6;0xB45CB503000DE3AE;0xB45CB503000DE3A2;0xB45CB503000DE3D2;0xB45CB503000DE38A;0xB45CB503000DE392;0xB45CB503000DE37E;0xB45CB503000DE396;0xB45CB503000DE3B2;0xB45CB503000DE39E
diff --git a/data/gpu_serial/BNYCZC4.txt b/data/gpu_serial/BNYCZC4.txt
deleted file mode 100644
index 04d61b5..0000000
--- a/data/gpu_serial/BNYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-BNYCZC4
-Slot.38: 5000:E603:0068:F248
-Slot.39: 5000:E603:0068:F428
-Slot.37: 5000:E603:0068:F260
-Slot.36: 5000:E603:0068:F200
-Slot.32: 5000:E603:0068:F288
-Slot.33: 5000:E603:0068:F24C
-Slot.34: 5000:E603:0068:F338
-Slot.35: 5000:E603:0068:F43C
-Slot.31: 5000:E603:0068:F250
-Slot.40: 5000:E603:0068:F41C
-GUID: 0x5000E6030068F248;0x5000E6030068F428;0x5000E6030068F260;0x5000E6030068F200;0x5000E6030068F288;0x5000E6030068F24C;0x5000E6030068F338;0x5000E6030068F43C;0x5000E6030068F250;0x5000E6030068F41C
diff --git a/data/gpu_serial/BT48HG4.txt b/data/gpu_serial/BT48HG4.txt
deleted file mode 100644
index 64f9a6f..0000000
--- a/data/gpu_serial/BT48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-BT48HG4
-Slot.38: 605E:6503:00EE:19F4
-Slot.39: 605E:6503:00EE:1AE4
-Slot.37: 605E:6503:00EE:19E8
-Slot.36: 605E:6503:00EE:1DD8
-Slot.32: 605E:6503:00EE:19FC
-Slot.33: 605E:6503:00EE:19A8
-Slot.34: 605E:6503:00EE:1BD8
-Slot.35: 605E:6503:00EE:1A74
-Slot.31: 605E:6503:00EE:1D24
-Slot.40: 605E:6503:00EE:1D2C
-GUID: 0x605E650300EE19F4;0x605E650300EE1AE4;0x605E650300EE19E8;0x605E650300EE1DD8;0x605E650300EE19FC;0x605E650300EE19A8;0x605E650300EE1BD8;0x605E650300EE1A74;0x605E650300EE1D24;0x605E650300EE1D2C
diff --git a/data/gpu_serial/C6Z7HG4.txt b/data/gpu_serial/C6Z7HG4.txt
deleted file mode 100644
index 3eb118e..0000000
--- a/data/gpu_serial/C6Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-C6Z7HG4
-Slot.38: 3825:F303:0084:FB9A
-Slot.39: 3825:F303:0084:FB6E
-Slot.37: 3825:F303:0084:FB3E
-Slot.36: 3825:F303:0084:FD06
-Slot.32: 3825:F303:0084:FD3E
-Slot.33: 3825:F303:0084:FB76
-Slot.34: 3825:F303:0084:F91E
-Slot.35: 3825:F303:0084:FB36
-Slot.31: 3825:F303:0084:FD36
-Slot.40: 3825:F303:0084:FBF2
-GUID: 0x3825F3030084FB9A;0x3825F3030084FB6E;0x3825F3030084FB3E;0x3825F3030084FD06;0x3825F3030084FD3E;0x3825F3030084FB76;0x3825F3030084F91E;0x3825F3030084FB36;0x3825F3030084FD36;0x3825F3030084FBF2
diff --git a/data/gpu_serial/C72B7G4.txt b/data/gpu_serial/C72B7G4.txt
deleted file mode 100644
index 9b97501..0000000
--- a/data/gpu_serial/C72B7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-C72B7G4
-Slot.38: B45C:B503:000D:D5DA
-Slot.39: B45C:B503:000D:C59E
-Slot.37: B45C:B503:000D:D686
-Slot.36: B45C:B503:000D:D026
-Slot.32: B45C:B503:000D:D50A
-Slot.33: B45C:B503:000D:CFD2
-Slot.34: B45C:B503:000D:C586
-Slot.35: B45C:B503:000D:D5A2
-Slot.31: B45C:B503:000D:D54E
-Slot.40: B45C:B503:000D:D562
-GUID: 0xB45CB503000DD5DA;0xB45CB503000DC59E;0xB45CB503000DD686;0xB45CB503000DD026;0xB45CB503000DD50A;0xB45CB503000DCFD2;0xB45CB503000DC586;0xB45CB503000DD5A2;0xB45CB503000DD54E;0xB45CB503000DD562
diff --git a/data/gpu_serial/C7Z7HG4.txt b/data/gpu_serial/C7Z7HG4.txt
deleted file mode 100644
index 6aa5911..0000000
--- a/data/gpu_serial/C7Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-C7Z7HG4
-Slot.38: 3825:F303:0085:01E2
-Slot.39: 3825:F303:0085:01F2
-Slot.37: 3825:F303:0085:017E
-Slot.36: 3825:F303:0085:00C2
-Slot.32: 3825:F303:0085:01C6
-Slot.33: 3825:F303:0085:024A
-Slot.34: 3825:F303:0085:01EE
-Slot.35: 3825:F303:0085:0276
-Slot.31: 3825:F303:0085:00BE
-Slot.40: 3825:F303:0085:016E
-GUID: 0x3825F303008501E2;0x3825F303008501F2;0x3825F3030085017E;0x3825F303008500C2;0x3825F303008501C6;0x3825F3030085024A;0x3825F303008501EE;0x3825F30300850276;0x3825F303008500BE;0x3825F3030085016E
diff --git a/data/gpu_serial/C9Z7HG4.txt b/data/gpu_serial/C9Z7HG4.txt
deleted file mode 100644
index d485c36..0000000
--- a/data/gpu_serial/C9Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-C9Z7HG4
-Slot.38: 3825:F303:0085:06EA
-Slot.39: 3825:F303:0085:0352
-Slot.37: 3825:F303:0085:06B2
-Slot.36: 3825:F303:0085:0866
-Slot.32: 3825:F303:0085:0876
-Slot.33: 3825:F303:0085:0712
-Slot.34: 3825:F303:0085:0372
-Slot.35: 3825:F303:0085:069A
-Slot.31: 3825:F303:0085:0872
-Slot.40: 3825:F303:0085:0882
-GUID: 0x3825F303008506EA;0x3825F30300850352;0x3825F303008506B2;0x3825F30300850866;0x3825F30300850876;0x3825F30300850712;0x3825F30300850372;0x3825F3030085069A;0x3825F30300850872;0x3825F30300850882
diff --git a/data/gpu_serial/CF8XHG4.txt b/data/gpu_serial/CF8XHG4.txt
deleted file mode 100644
index cb5f097..0000000
--- a/data/gpu_serial/CF8XHG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-CF8XHG4
-Slot.38: 605E:6503:00EE:1E70
-Slot.39: 605E:6503:00EE:1F18
-Slot.37: B45C:B503:000D:C476
-Slot.36: B45C:B503:000D:C46A
-Slot.32: B45C:B503:000D:C496
-Slot.33: B45C:B503:000D:C48E
-Slot.34: B45C:B503:000D:C48A
-Slot.35: B45C:B503:000D:C44A
-Slot.31: 605E:6503:00EE:1E54
-Slot.40: 605E:6503:00EE:1E68
-GUID: 0x605E650300EE1E70;0x605E650300EE1F18;0xB45CB503000DC476;0xB45CB503000DC46A;0xB45CB503000DC496;0xB45CB503000DC48E;0xB45CB503000DC48A;0xB45CB503000DC44A;0x605E650300EE1E54;0x605E650300EE1E68
diff --git a/data/gpu_serial/CG4F7G4.txt b/data/gpu_serial/CG4F7G4.txt
deleted file mode 100644
index c3e9f83..0000000
--- a/data/gpu_serial/CG4F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-CG4F7G4
-Slot.38: B45C:B503:000D:E296
-Slot.39: B45C:B503:000D:E2DE
-Slot.37: B45C:B503:000D:E2DA
-Slot.36: B45C:B503:000D:E2EA
-Slot.32: B45C:B503:000D:E332
-Slot.33: B45C:B503:000D:E2D6
-Slot.34: B45C:B503:000D:E272
-Slot.35: B45C:B503:000D:E2CA
-Slot.31: B45C:B503:000D:E34A
-Slot.40: B45C:B503:000D:E2CE
-GUID: 0xB45CB503000DE296;0xB45CB503000DE2DE;0xB45CB503000DE2DA;0xB45CB503000DE2EA;0xB45CB503000DE332;0xB45CB503000DE2D6;0xB45CB503000DE272;0xB45CB503000DE2CA;0xB45CB503000DE34A;0xB45CB503000DE2CE
diff --git a/data/gpu_serial/CGZ7HG4.txt b/data/gpu_serial/CGZ7HG4.txt
deleted file mode 100644
index fbd5d50..0000000
--- a/data/gpu_serial/CGZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-CGZ7HG4
-Slot.38: B45C:B503:000D:CFA6
-Slot.39: B45C:B503:000D:D6AA
-Slot.37: B45C:B503:000D:CF9E
-Slot.36: B45C:B503:000D:CF42
-Slot.32: B45C:B503:000D:D57A
-Slot.33: B45C:B503:000D:D4C2
-Slot.34: B45C:B503:000D:D58A
-Slot.35: B45C:B503:000D:CF6A
-Slot.31: B45C:B503:000D:D58E
-Slot.40: B45C:B503:000D:D586
-GUID: 0xB45CB503000DCFA6;0xB45CB503000DD6AA;0xB45CB503000DCF9E;0xB45CB503000DCF42;0xB45CB503000DD57A;0xB45CB503000DD4C2;0xB45CB503000DD58A;0xB45CB503000DCF6A;0xB45CB503000DD58E;0xB45CB503000DD586
diff --git a/data/gpu_serial/CS48HG4.txt b/data/gpu_serial/CS48HG4.txt
deleted file mode 100644
index 8e6d435..0000000
--- a/data/gpu_serial/CS48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-CS48HG4
-Slot.38: B45C:B503:0039:DECE
-Slot.39: B45C:B503:0039:DEBE
-Slot.37: B45C:B503:0039:DEE2
-Slot.36: B45C:B503:0039:DED2
-Slot.32: B45C:B503:0039:DEC6
-Slot.33: B45C:B503:0039:DEEE
-Slot.34: B45C:B503:0039:DED6
-Slot.35: B45C:B503:000D:DC3A
-Slot.31: B45C:B503:000D:E35A
-Slot.40: B45C:B503:0039:DEB6
-GUID: 0xB45CB5030039DECE;0xB45CB5030039DEBE;0xB45CB5030039DEE2;0xB45CB5030039DED2;0xB45CB5030039DEC6;0xB45CB5030039DEEE;0xB45CB5030039DED6;0xB45CB503000DDC3A;0xB45CB503000DE35A;0xB45CB5030039DEB6
diff --git a/data/gpu_serial/CV48HG4.txt b/data/gpu_serial/CV48HG4.txt
deleted file mode 100644
index 6caaef3..0000000
--- a/data/gpu_serial/CV48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-CV48HG4
-Slot.38: 605E:6503:00EE:1824
-Slot.39: 605E:6503:00EE:1F34
-Slot.37: 605E:6503:00EE:16F8
-Slot.36: 605E:6503:00EE:1EDC
-Slot.32: 605E:6503:00EE:1EF0
-Slot.33: 605E:6503:00EE:137C
-Slot.34: 605E:6503:00EE:162C
-Slot.35: 605E:6503:00EE:1EF8
-Slot.31: 605E:6503:00EE:1E14
-Slot.40: 605E:6503:00EE:1F28
-GUID: 0x605E650300EE1824;0x605E650300EE1F34;0x605E650300EE16F8;0x605E650300EE1EDC;0x605E650300EE1EF0;0x605E650300EE137C;0x605E650300EE162C;0x605E650300EE1EF8;0x605E650300EE1E14;0x605E650300EE1F28
diff --git a/data/gpu_serial/CXZCZC4.txt b/data/gpu_serial/CXZCZC4.txt
deleted file mode 100644
index bec1f88..0000000
--- a/data/gpu_serial/CXZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-CXZCZC4
-Slot.38: 3825:F303:0016:62FA
-Slot.39: 3825:F303:0016:7D02
-Slot.37: 3825:F303:0016:7E26
-Slot.36: 3825:F303:0016:6AEE
-Slot.32: 3825:F303:0016:7DAE
-Slot.33: 3825:F303:0016:6BBA
-Slot.34: 3825:F303:0016:7DC2
-Slot.35: 3825:F303:0016:7DD2
-Slot.31: 3825:F303:0016:6B7E
-Slot.40: 3825:F303:0016:7DD6
-GUID: 0x3825F303001662FA;0x3825F30300167D02;0x3825F30300167E26;0x3825F30300166AEE;0x3825F30300167DAE;0x3825F30300166BBA;0x3825F30300167DC2;0x3825F30300167DD2;0x3825F30300166B7E;0x3825F30300167DD6
diff --git a/data/gpu_serial/D6Z7HG4.txt b/data/gpu_serial/D6Z7HG4.txt
deleted file mode 100644
index b78f94f..0000000
--- a/data/gpu_serial/D6Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-D6Z7HG4
-Slot.38: 3825:F303:0084:F712
-Slot.39: 3825:F303:0084:F776
-Slot.37: 3825:F303:0084:FA62
-Slot.36: 3825:F303:0084:F762
-Slot.32: 3825:F303:0084:FA8A
-Slot.33: 3825:F303:0084:F6FE
-Slot.34: 3825:F303:0084:FA5E
-Slot.35: 3825:F303:0084:FA72
-Slot.31: 3825:F303:0084:FAEA
-Slot.40: 3825:F303:0084:FAAA
-GUID: 0x3825F3030084F712;0x3825F3030084F776;0x3825F3030084FA62;0x3825F3030084F762;0x3825F3030084FA8A;0x3825F3030084F6FE;0x3825F3030084FA5E;0x3825F3030084FA72;0x3825F3030084FAEA;0x3825F3030084FAAA
diff --git a/data/gpu_serial/D7Z7HG4.txt b/data/gpu_serial/D7Z7HG4.txt
deleted file mode 100644
index caa2931..0000000
--- a/data/gpu_serial/D7Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-D7Z7HG4
-Slot.38: B45C:B503:000D:E21E
-Slot.39: B45C:B503:000D:E1EA
-Slot.37: B45C:B503:000D:D89A
-Slot.36: B45C:B503:000D:E22A
-Slot.32: B45C:B503:000D:E236
-Slot.33: B45C:B503:000D:E222
-Slot.34: B45C:B503:000D:D7AA
-Slot.35: B45C:B503:000D:E1F2
-Slot.31: B45C:B503:000D:CEAE
-Slot.40: B45C:B503:000D:D04A
-GUID: 0xB45CB503000DE21E;0xB45CB503000DE1EA;0xB45CB503000DD89A;0xB45CB503000DE22A;0xB45CB503000DE236;0xB45CB503000DE222;0xB45CB503000DD7AA;0xB45CB503000DE1F2;0xB45CB503000DCEAE;0xB45CB503000DD04A
diff --git a/data/gpu_serial/D8Z7HG4.txt b/data/gpu_serial/D8Z7HG4.txt
deleted file mode 100644
index 9975b1c..0000000
--- a/data/gpu_serial/D8Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-D8Z7HG4
-Slot.38: 3825:F303:0085:041A
-Slot.39: 3825:F303:0085:03BA
-Slot.37: 3825:F303:0085:010A
-Slot.36: 3825:F303:0085:03AE
-Slot.32: 3825:F303:0085:03EE
-Slot.33: 3825:F303:0085:03EA
-Slot.34: 3825:F303:0085:03A2
-Slot.35: 3825:F303:0085:03F6
-Slot.31: 3825:F303:0085:03BE
-Slot.40: 3825:F303:0085:0392
-GUID: 0x3825F3030085041A;0x3825F303008503BA;0x3825F3030085010A;0x3825F303008503AE;0x3825F303008503EE;0x3825F303008503EA;0x3825F303008503A2;0x3825F303008503F6;0x3825F303008503BE;0x3825F30300850392
diff --git a/data/gpu_serial/D9Z7HG4.txt b/data/gpu_serial/D9Z7HG4.txt
deleted file mode 100644
index 180ba07..0000000
--- a/data/gpu_serial/D9Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-D9Z7HG4
-Slot.38: 3825:F303:0085:0692
-Slot.39: 3825:F303:0085:06BA
-Slot.37: 3825:F303:0085:06AE
-Slot.36: 3825:F303:0085:06A2
-Slot.32: 3825:F303:0085:036E
-Slot.33: 3825:F303:0085:054A
-Slot.34: 3825:F303:0085:05EE
-Slot.35: 3825:F303:0085:053A
-Slot.31: 3825:F303:0085:0586
-Slot.40: 3825:F303:0085:0526
-GUID: 0x3825F30300850692;0x3825F303008506BA;0x3825F303008506AE;0x3825F303008506A2;0x3825F3030085036E;0x3825F3030085054A;0x3825F303008505EE;0x3825F3030085053A;0x3825F30300850586;0x3825F30300850526
diff --git a/data/gpu_serial/DF8XHG4.txt b/data/gpu_serial/DF8XHG4.txt
deleted file mode 100644
index 8926607..0000000
--- a/data/gpu_serial/DF8XHG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-DF8XHG4
-Slot.38: 605E:6503:00EE:11B0
-Slot.39: 605E:6503:00EE:1E5C
-Slot.37: 605E:6503:00EE:1E04
-Slot.36: 605E:6503:00EE:1E60
-Slot.32: 605E:6503:00EE:0E88
-Slot.33: B45C:B503:000D:C472
-Slot.34: B45C:B503:000D:C462
-Slot.35: 605E:6503:00EE:10F0
-Slot.31: 605E:6503:00EE:1158
-Slot.40: 605E:6503:00EE:10D4
-GUID: 0x605E650300EE11B0;0x605E650300EE1E5C;0x605E650300EE1E04;0x605E650300EE1E60;0x605E650300EE0E88;0xB45CB503000DC472;0xB45CB503000DC462;0x605E650300EE10F0;0x605E650300EE1158;0x605E650300EE10D4
diff --git a/data/gpu_serial/DLYCZC4.txt b/data/gpu_serial/DLYCZC4.txt
deleted file mode 100644
index da3839b..0000000
--- a/data/gpu_serial/DLYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-DLYCZC4
-Slot.38: 5000:E603:0068:F48C
-Slot.39: 5000:E603:0068:F3A8
-Slot.37: 5000:E603:0068:F400
-Slot.36: 5000:E603:0068:F414
-Slot.32: 5000:E603:0068:F49C
-Slot.33: 5000:E603:0068:F34C
-Slot.34: 5000:E603:0068:F348
-Slot.35: 5000:E603:0068:F484
-Slot.31: 5000:E603:0068:F39C
-Slot.40: 5000:E603:0068:F3AC
-GUID: 0x5000E6030068F48C;0x5000E6030068F3A8;0x5000E6030068F400;0x5000E6030068F414;0x5000E6030068F49C;0x5000E6030068F34C;0x5000E6030068F348;0x5000E6030068F484;0x5000E6030068F39C;0x5000E6030068F3AC
diff --git a/data/gpu_serial/DS48HG4.txt b/data/gpu_serial/DS48HG4.txt
deleted file mode 100644
index 3b138f5..0000000
--- a/data/gpu_serial/DS48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-DS48HG4
-Slot.38: 605E:6503:00EE:1FD0
-Slot.39: B45C:B503:000D:C3BE
-Slot.37: B45C:B503:000D:C6A2
-Slot.36: B45C:B503:000D:C69E
-Slot.32: 605E:6503:00EE:1FCC
-Slot.33: B45C:B503:000D:C3D2
-Slot.34: B45C:B503:000D:C6E2
-Slot.35: B45C:B503:000D:C6D6
-Slot.31: B45C:B503:000D:C6C6
-Slot.40: B45C:B503:000D:C6BE
-GUID: 0x605E650300EE1FD0;0xB45CB503000DC3BE;0xB45CB503000DC6A2;0xB45CB503000DC69E;0x605E650300EE1FCC;0xB45CB503000DC3D2;0xB45CB503000DC6E2;0xB45CB503000DC6D6;0xB45CB503000DC6C6;0xB45CB503000DC6BE
diff --git a/data/gpu_serial/DT48HG4.txt b/data/gpu_serial/DT48HG4.txt
deleted file mode 100644
index 447bd58..0000000
--- a/data/gpu_serial/DT48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-DT48HG4
-Slot.38: 605E:6503:00EE:1DF8
-Slot.39: 605E:6503:00EE:1C84
-Slot.37: 605E:6503:00EE:1CD4
-Slot.36: 605E:6503:00EE:1CE0
-Slot.32: 605E:6503:00EE:1DD0
-Slot.33: 605E:6503:00EE:1DE8
-Slot.34: 605E:6503:00EE:1DD4
-Slot.35: 605E:6503:00EE:1DA8
-Slot.31: 605E:6503:00EE:1DE4
-Slot.40: 605E:6503:00EE:1DB4
-GUID: 0x605E650300EE1DF8;0x605E650300EE1C84;0x605E650300EE1CD4;0x605E650300EE1CE0;0x605E650300EE1DD0;0x605E650300EE1DE8;0x605E650300EE1DD4;0x605E650300EE1DA8;0x605E650300EE1DE4;0x605E650300EE1DB4
diff --git a/data/gpu_serial/DXZCZC4.txt b/data/gpu_serial/DXZCZC4.txt
deleted file mode 100644
index 51b6df3..0000000
--- a/data/gpu_serial/DXZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-DXZCZC4
-Slot.38: 3825:F303:00C4:0A6C
-Slot.39: 3825:F303:00C4:166C
-Slot.37: 3825:F303:00C4:0A3C
-Slot.36: 3825:F303:00C4:0A48
-Slot.32: 3825:F303:00C4:1664
-Slot.33: 3825:F303:00C4:1628
-Slot.34: 3825:F303:00C4:1634
-Slot.35: 3825:F303:00C4:156C
-Slot.31: 3825:F303:00C4:0A70
-Slot.40: 3825:F303:00C4:0A68
-GUID: 0x3825F30300C40A6C;0x3825F30300C4166C;0x3825F30300C40A3C;0x3825F30300C40A48;0x3825F30300C41664;0x3825F30300C41628;0x3825F30300C41634;0x3825F30300C4156C;0x3825F30300C40A70;0x3825F30300C40A68
diff --git a/data/gpu_serial/F42F7G4.txt b/data/gpu_serial/F42F7G4.txt
deleted file mode 100644
index 30a649e..0000000
--- a/data/gpu_serial/F42F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-F42F7G4
-Slot.38: B45C:B503:000D:E1BE
-Slot.39: B45C:B503:000D:DC62
-Slot.37: B45C:B503:000D:DBB6
-Slot.36: B45C:B503:000D:E1CA
-Slot.32: B45C:B503:000D:DC76
-Slot.33: B45C:B503:000D:DB92
-Slot.34: B45C:B503:000D:DB7E
-Slot.35: B45C:B503:000D:E1C6
-Slot.31: B45C:B503:000D:DD22
-Slot.40: B45C:B503:000D:E1DA
-GUID: 0xB45CB503000DE1BE;0xB45CB503000DDC62;0xB45CB503000DDBB6;0xB45CB503000DE1CA;0xB45CB503000DDC76;0xB45CB503000DDB92;0xB45CB503000DDB7E;0xB45CB503000DE1C6;0xB45CB503000DDD22;0xB45CB503000DE1DA
diff --git a/data/gpu_serial/F7Z7HG4.txt b/data/gpu_serial/F7Z7HG4.txt
deleted file mode 100644
index 7ee9801..0000000
--- a/data/gpu_serial/F7Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-F7Z7HG4
-Slot.38: 3825:F303:0084:FDCA
-Slot.39: 3825:F303:0084:FD52
-Slot.37: 3825:F303:0084:FE96
-Slot.36: 3825:F303:0084:FB6A
-Slot.32: 3825:F303:0084:FE9A
-Slot.33: 3825:F303:0084:FB2A
-Slot.34: 3825:F303:0084:FCD6
-Slot.35: 3825:F303:0090:86C8
-Slot.31: 3825:F303:0084:FEA2
-Slot.40: 3825:F303:0084:FAFE
-GUID: 0x3825F3030084FDCA;0x3825F3030084FD52;0x3825F3030084FE96;0x3825F3030084FB6A;0x3825F3030084FE9A;0x3825F3030084FB2A;0x3825F3030084FCD6;0x3825F303009086C8;0x3825F3030084FEA2;0x3825F3030084FAFE
diff --git a/data/gpu_serial/F9Z7HG4.txt b/data/gpu_serial/F9Z7HG4.txt
deleted file mode 100644
index 0e7c71d..0000000
--- a/data/gpu_serial/F9Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-F9Z7HG4
-Slot.38: B45C:B503:000D:DAFE
-Slot.39: B45C:B503:000D:DB0E
-Slot.37: B45C:B503:000D:DABA
-Slot.36: B45C:B503:000D:DA3A
-Slot.32: B45C:B503:000D:DA2E
-Slot.33: B45C:B503:000D:DADA
-Slot.34: B45C:B503:000D:DAE6
-Slot.35: B45C:B503:000D:DAEE
-Slot.31: B45C:B503:000D:DA42
-Slot.40: B45C:B503:000D:DA26
-GUID: 0xB45CB503000DDAFE;0xB45CB503000DDB0E;0xB45CB503000DDABA;0xB45CB503000DDA3A;0xB45CB503000DDA2E;0xB45CB503000DDADA;0xB45CB503000DDAE6;0xB45CB503000DDAEE;0xB45CB503000DDA42;0xB45CB503000DDA26
diff --git a/data/gpu_serial/FB2F7G4.txt b/data/gpu_serial/FB2F7G4.txt
deleted file mode 100644
index c86ccf2..0000000
--- a/data/gpu_serial/FB2F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-FB2F7G4
-Slot.38: B45C:B503:000D:DBD6
-Slot.39: B45C:B503:000D:DBF6
-Slot.37: B45C:B503:000D:DBE2
-Slot.36: B45C:B503:000D:DC26
-Slot.32: B45C:B503:000D:D70A
-Slot.33: B45C:B503:000D:D702
-Slot.34: B45C:B503:000D:DCB6
-Slot.35: B45C:B503:000D:DCC2
-Slot.31: B45C:B503:000D:DC6A
-Slot.40: B45C:B503:000D:DBF2
-GUID: 0xB45CB503000DDBD6;0xB45CB503000DDBF6;0xB45CB503000DDBE2;0xB45CB503000DDC26;0xB45CB503000DD70A;0xB45CB503000DD702;0xB45CB503000DDCB6;0xB45CB503000DDCC2;0xB45CB503000DDC6A;0xB45CB503000DDBF2
diff --git a/data/gpu_serial/FF8XHG4.txt b/data/gpu_serial/FF8XHG4.txt
deleted file mode 100644
index 8b38514..0000000
--- a/data/gpu_serial/FF8XHG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-FF8XHG4
-Slot.38: 605E:6503:00EE:141C
-Slot.39: 605E:6503:00EE:1108
-Slot.37: 605E:6503:00EE:10FC
-Slot.36: 605E:6503:00EE:1490
-Slot.32: 605E:6503:00EE:14D0
-Slot.33: 605E:6503:00EE:14A0
-Slot.34: 605E:6503:00EE:144C
-Slot.35: 605E:6503:00EE:110C
-Slot.31: 605E:6503:00EE:1124
-Slot.40: 605E:6503:00EE:1130
-GUID: 0x605E650300EE141C;0x605E650300EE1108;0x605E650300EE10FC;0x605E650300EE1490;0x605E650300EE14D0;0x605E650300EE14A0;0x605E650300EE144C;0x605E650300EE110C;0x605E650300EE1124;0x605E650300EE1130
diff --git a/data/gpu_serial/FS48HG4.txt b/data/gpu_serial/FS48HG4.txt
deleted file mode 100644
index f9dc6fc..0000000
--- a/data/gpu_serial/FS48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-FS48HG4
-Slot.38: 605E:6503:00EE:1F20
-Slot.39: 605E:6503:00EE:1F30
-Slot.37: 605E:6503:00EE:1F54
-Slot.36: 605E:6503:00EE:1F48
-Slot.32: 605E:6503:00EE:1F24
-Slot.33: 605E:6503:00EE:1F50
-Slot.34: 605E:6503:00EE:1F04
-Slot.35: 605E:6503:00EE:1EF4
-Slot.31: 605E:6503:00EE:1F0C
-Slot.40: 605E:6503:00EE:1F44
-GUID: 0x605E650300EE1F20;0x605E650300EE1F30;0x605E650300EE1F54;0x605E650300EE1F48;0x605E650300EE1F24;0x605E650300EE1F50;0x605E650300EE1F04;0x605E650300EE1EF4;0x605E650300EE1F0C;0x605E650300EE1F44
diff --git a/data/gpu_serial/FT48HG4.txt b/data/gpu_serial/FT48HG4.txt
deleted file mode 100644
index b5f535c..0000000
--- a/data/gpu_serial/FT48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-FT48HG4
-Slot.38: 605E:6503:00EE:1E4C
-Slot.39: 605E:6503:00EE:1DFC
-Slot.37: 605E:6503:00EE:1E38
-Slot.36: 605E:6503:00EE:1E1C
-Slot.32: 605E:6503:00EE:1D90
-Slot.33: 605E:6503:00EE:1D6C
-Slot.34: 605E:6503:00EE:1E50
-Slot.35: 605E:6503:00EE:1D84
-Slot.31: 605E:6503:00EE:1D8C
-Slot.40: 605E:6503:00EE:1B3C
-GUID: 0x605E650300EE1E4C;0x605E650300EE1DFC;0x605E650300EE1E38;0x605E650300EE1E1C;0x605E650300EE1D90;0x605E650300EE1D6C;0x605E650300EE1E50;0x605E650300EE1D84;0x605E650300EE1D8C;0x605E650300EE1B3C
diff --git a/data/gpu_serial/FWZCZC4.txt b/data/gpu_serial/FWZCZC4.txt
deleted file mode 100644
index 5b92c30..0000000
--- a/data/gpu_serial/FWZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-FWZCZC4
-Slot.38: 7C8C:0903:00A4:E46C
-Slot.39: 7C8C:0903:00A5:0470
-Slot.37: 7C8C:0903:00A5:0430
-Slot.36: 7C8C:0903:00A5:0438
-Slot.32: 7C8C:0903:00A5:046C
-Slot.33: 7C8C:0903:00A5:0478
-Slot.34: 7C8C:0903:00A5:04F4
-Slot.35: 7C8C:0903:00A5:04E0
-Slot.31: 7C8C:0903:00A5:04FC
-Slot.40: 7C8C:0903:00A5:042C
-GUID: 0x7C8C090300A4E46C;0x7C8C090300A50470;0x7C8C090300A50430;0x7C8C090300A50438;0x7C8C090300A5046C;0x7C8C090300A50478;0x7C8C090300A504F4;0x7C8C090300A504E0;0x7C8C090300A504FC;0x7C8C090300A5042C
diff --git a/data/gpu_serial/FYJCZC4.txt b/data/gpu_serial/FYJCZC4.txt
deleted file mode 100644
index 8216886..0000000
--- a/data/gpu_serial/FYJCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-FYJCZC4
-Slot.38: 5C25:7303:001F:C078
-Slot.39: 5C25:7303:001F:BFAC
-Slot.37: 5C25:7303:001F:C034
-Slot.36: 5C25:7303:001F:C080
-Slot.32: 5C25:7303:001F:C044
-Slot.33: 5C25:7303:001F:C060
-Slot.34: 5C25:7303:001F:C06C
-Slot.35: 5C25:7303:001F:C09C
-Slot.31: 5C25:7303:001F:C07C
-Slot.40: 5C25:7303:001F:C04C
-GUID: 0x5C257303001FC078;0x5C257303001FBFAC;0x5C257303001FC034;0x5C257303001FC080;0x5C257303001FC044;0x5C257303001FC060;0x5C257303001FC06C;0x5C257303001FC09C;0x5C257303001FC07C;0x5C257303001FC04C
diff --git a/data/gpu_serial/G6Z7HG4.txt b/data/gpu_serial/G6Z7HG4.txt
deleted file mode 100644
index 04a9b83..0000000
--- a/data/gpu_serial/G6Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-G6Z7HG4
-Slot.38: B45C:B503:000D:CE26
-Slot.39: B45C:B503:000D:CD7E
-Slot.37: B45C:B503:000D:CCAA
-Slot.36: B45C:B503:000D:CC56
-Slot.32: B45C:B503:000D:CDAA
-Slot.33: B45C:B503:000D:CD32
-Slot.34: B45C:B503:000D:CBC2
-Slot.35: B45C:B503:000D:CE02
-Slot.31: B45C:B503:000D:CD96
-Slot.40: B45C:B503:000D:CD26
-GUID: 0xB45CB503000DCE26;0xB45CB503000DCD7E;0xB45CB503000DCCAA;0xB45CB503000DCC56;0xB45CB503000DCDAA;0xB45CB503000DCD32;0xB45CB503000DCBC2;0xB45CB503000DCE02;0xB45CB503000DCD96;0xB45CB503000DCD26
diff --git a/data/gpu_serial/GS48HG4.txt b/data/gpu_serial/GS48HG4.txt
deleted file mode 100644
index b4d8977..0000000
--- a/data/gpu_serial/GS48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-GS48HG4
-Slot.38: B45C:B503:000D:C42E
-Slot.39: 605E:6503:00EE:1F90
-Slot.37: 605E:6503:00EE:205C
-Slot.36: 605E:6503:00EE:1F6C
-Slot.32: 605E:6503:00EE:2058
-Slot.33: 605E:6503:00EE:1F8C
-Slot.34: 605E:6503:00EE:2078
-Slot.35: 605E:6503:00EE:1F94
-Slot.31: 605E:6503:00EE:2060
-Slot.40: 605E:6503:00EE:2064
-GUID: 0xB45CB503000DC42E;0x605E650300EE1F90;0x605E650300EE205C;0x605E650300EE1F6C;0x605E650300EE2058;0x605E650300EE1F8C;0x605E650300EE2078;0x605E650300EE1F94;0x605E650300EE2060;0x605E650300EE2064
diff --git a/data/gpu_serial/GV48HG4.txt b/data/gpu_serial/GV48HG4.txt
deleted file mode 100644
index 2abcb9e..0000000
--- a/data/gpu_serial/GV48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-GV48HG4
-Slot.38: 605E:6503:00EE:12D4
-Slot.39: 605E:6503:00EE:1260
-Slot.37: 605E:6503:00EE:1850
-Slot.36: 605E:6503:00EE:130C
-Slot.32: 605E:6503:00EE:15C4
-Slot.33: 605E:6503:00EE:16DC
-Slot.34: 605E:6503:00EE:1854
-Slot.35: 605E:6503:00EE:1878
-Slot.31: 605E:6503:00EE:1860
-Slot.40: 605E:6503:00EE:1580
-GUID: 0x605E650300EE12D4;0x605E650300EE1260;0x605E650300EE1850;0x605E650300EE130C;0x605E650300EE15C4;0x605E650300EE16DC;0x605E650300EE1854;0x605E650300EE1878;0x605E650300EE1860;0x605E650300EE1580
diff --git a/data/gpu_serial/H22F7G4.txt b/data/gpu_serial/H22F7G4.txt
deleted file mode 100644
index 0bf2f97..0000000
--- a/data/gpu_serial/H22F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-H22F7G4
-Slot.38: B45C:B503:000D:DC66
-Slot.39: B45C:B503:000D:DD1E
-Slot.37: B45C:B503:000D:DC8A
-Slot.36: B45C:B503:000D:DD26
-Slot.32: B45C:B503:000D:DC92
-Slot.33: B45C:B503:000D:E1E2
-Slot.34: B45C:B503:000D:DC72
-Slot.35: B45C:B503:000D:E1CE
-Slot.31: B45C:B503:000D:E1C2
-Slot.40: B45C:B503:000D:DD02
-GUID: 0xB45CB503000DDC66;0xB45CB503000DDD1E;0xB45CB503000DDC8A;0xB45CB503000DDD26;0xB45CB503000DDC92;0xB45CB503000DE1E2;0xB45CB503000DDC72;0xB45CB503000DE1CE;0xB45CB503000DE1C2;0xB45CB503000DDD02
diff --git a/data/gpu_serial/H42F7G4.txt b/data/gpu_serial/H42F7G4.txt
deleted file mode 100644
index 1876248..0000000
--- a/data/gpu_serial/H42F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-H42F7G4
-Slot.38: B45C:B503:000D:D6D6
-Slot.39: B45C:B503:000D:C58A
-Slot.37: B45C:B503:000D:D4FA
-Slot.36: B45C:B503:000D:D4DE
-Slot.32: B45C:B503:000D:C592
-Slot.33: B45C:B503:000D:C662
-Slot.34: B45C:B503:000D:C65A
-Slot.35: B45C:B503:000D:D6E2
-Slot.31: B45C:B503:000D:CFFE
-Slot.40: B45C:B503:000D:D6F2
-GUID: 0xB45CB503000DD6D6;0xB45CB503000DC58A;0xB45CB503000DD4FA;0xB45CB503000DD4DE;0xB45CB503000DC592;0xB45CB503000DC662;0xB45CB503000DC65A;0xB45CB503000DD6E2;0xB45CB503000DCFFE;0xB45CB503000DD6F2
diff --git a/data/gpu_serial/H6Z7HG4.txt b/data/gpu_serial/H6Z7HG4.txt
deleted file mode 100644
index 253391e..0000000
--- a/data/gpu_serial/H6Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-H6Z7HG4
-Slot.38: 3825:F303:0085:0322
-Slot.39: 3825:F303:0085:031E
-Slot.37: 3825:F303:0085:028E
-Slot.36: 3825:F303:0085:02BE
-Slot.32: 3825:F303:0085:02CE
-Slot.33: 3825:F303:0084:FFD2
-Slot.34: 3825:F303:0085:0346
-Slot.35: 3825:F303:0085:02FE
-Slot.31: 3825:F303:0084:FFDE
-Slot.40: 3825:F303:0085:041E
-GUID: 0x3825F30300850322;0x3825F3030085031E;0x3825F3030085028E;0x3825F303008502BE;0x3825F303008502CE;0x3825F3030084FFD2;0x3825F30300850346;0x3825F303008502FE;0x3825F3030084FFDE;0x3825F3030085041E
diff --git a/data/gpu_serial/H7Z7HG4.txt b/data/gpu_serial/H7Z7HG4.txt
deleted file mode 100644
index f6c9a97..0000000
--- a/data/gpu_serial/H7Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-H7Z7HG4
-Slot.38: B45C:B503:000D:D77E
-Slot.39: B45C:B503:000D:CF3A
-Slot.37: B45C:B503:000D:D79A
-Slot.36: B45C:B503:000D:D786
-Slot.32: B45C:B503:000D:CF12
-Slot.33: B45C:B503:000D:D706
-Slot.34: B45C:B503:000D:D79E
-Slot.35: B45C:B503:000D:D796
-Slot.31: B45C:B503:000D:D766
-Slot.40: B45C:B503:000D:D792
-GUID: 0xB45CB503000DD77E;0xB45CB503000DCF3A;0xB45CB503000DD79A;0xB45CB503000DD786;0xB45CB503000DCF12;0xB45CB503000DD706;0xB45CB503000DD79E;0xB45CB503000DD796;0xB45CB503000DD766;0xB45CB503000DD792
diff --git a/data/gpu_serial/H8KS3H4.txt b/data/gpu_serial/H8KS3H4.txt
deleted file mode 100644
index 7f42505..0000000
--- a/data/gpu_serial/H8KS3H4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-H8KS3H4
-Slot.38: 605E:6503:0030:88BC
-Slot.39: 605E:6503:0030:87D0
-Slot.37: 605E:6503:0030:88D0
-Slot.36: 605E:6503:0030:89B0
-Slot.32: 605E:6503:0030:8728
-Slot.33: 605E:6503:0030:88B8
-Slot.34: 605E:6503:0030:87F0
-Slot.35: 605E:6503:0030:89DC
-Slot.31: 605E:6503:0030:87B8
-Slot.40: 605E:6503:0030:886C
-GUID: 0x605E6503003088BC;0x605E6503003087D0;0x605E6503003088D0;0x605E6503003089B0;0x605E650300308728;0x605E6503003088B8;0x605E6503003087F0;0x605E6503003089DC;0x605E6503003087B8;0x605E65030030886C
diff --git a/data/gpu_serial/H8Z7HG4.txt b/data/gpu_serial/H8Z7HG4.txt
deleted file mode 100644
index fd2c24e..0000000
--- a/data/gpu_serial/H8Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-H8Z7HG4
-Slot.38: B45C:B503:000D:D8BA
-Slot.39: B45C:B503:000D:D8CA
-Slot.37: B45C:B503:000D:D84E
-Slot.36: B45C:B503:000D:D9BA
-Slot.32: B45C:B503:000D:CFEE
-Slot.33: B45C:B503:000D:D8D2
-Slot.34: B45C:B503:000D:D9DE
-Slot.35: B45C:B503:000D:D776
-Slot.31: B45C:B503:000D:D9D2
-Slot.40: B45C:B503:000D:D8D6
-GUID: 0xB45CB503000DD8BA;0xB45CB503000DD8CA;0xB45CB503000DD84E;0xB45CB503000DD9BA;0xB45CB503000DCFEE;0xB45CB503000DD8D2;0xB45CB503000DD9DE;0xB45CB503000DD776;0xB45CB503000DD9D2;0xB45CB503000DD8D6
diff --git a/data/gpu_serial/HR48HG4.txt b/data/gpu_serial/HR48HG4.txt
deleted file mode 100644
index facb447..0000000
--- a/data/gpu_serial/HR48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-HR48HG4
-Slot.38: 605E:6503:00EE:1EAC
-Slot.39: 605E:6503:00EE:1DDC
-Slot.37: 605E:6503:00EE:1E94
-Slot.36: 605E:6503:00EE:1E40
-Slot.32: 605E:6503:00EE:1CB4
-Slot.33: 605E:6503:00EE:1EFC
-Slot.34: 605E:6503:00EE:1E0C
-Slot.35: 605E:6503:00EE:1DC8
-Slot.31: 605E:6503:00EE:1CA0
-Slot.40: 605E:6503:00EE:1E10
-GUID: 0x605E650300EE1EAC;0x605E650300EE1DDC;0x605E650300EE1E94;0x605E650300EE1E40;0x605E650300EE1CB4;0x605E650300EE1EFC;0x605E650300EE1E0C;0x605E650300EE1DC8;0x605E650300EE1CA0;0x605E650300EE1E10
diff --git a/data/gpu_serial/HT48HG4.txt b/data/gpu_serial/HT48HG4.txt
deleted file mode 100644
index 7360821..0000000
--- a/data/gpu_serial/HT48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-HT48HG4
-Slot.38: B45C:B503:000D:C626
-Slot.39: B45C:B503:000D:C62E
-Slot.37: B45C:B503:000D:C5EA
-Slot.36: B45C:B503:000D:C60E
-Slot.32: B45C:B503:000D:C61A
-Slot.33: B45C:B503:000D:C5AA
-Slot.34: B45C:B503:000D:C606
-Slot.35: B45C:B503:000D:C5BA
-Slot.31: B45C:B503:000D:C62A
-Slot.40: B45C:B503:000D:C5FE
-GUID: 0xB45CB503000DC626;0xB45CB503000DC62E;0xB45CB503000DC5EA;0xB45CB503000DC60E;0xB45CB503000DC61A;0xB45CB503000DC5AA;0xB45CB503000DC606;0xB45CB503000DC5BA;0xB45CB503000DC62A;0xB45CB503000DC5FE
diff --git a/data/gpu_serial/J6Z7HG4.txt b/data/gpu_serial/J6Z7HG4.txt
deleted file mode 100644
index a96fe5d..0000000
--- a/data/gpu_serial/J6Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-J6Z7HG4
-Slot.38: B45C:B503:000D:E2A6
-Slot.39: B45C:B503:000D:E382
-Slot.37: B45C:B503:000D:E3FE
-Slot.36: B45C:B503:000D:E2AE
-Slot.32: B45C:B503:000D:DC0E
-Slot.33: B45C:B503:000D:E346
-Slot.34: B45C:B503:000D:E24E
-Slot.35: B45C:B503:000D:E2AA
-Slot.31: B45C:B503:000D:E34E
-Slot.40: B45C:B503:000D:DC4A
-GUID: 0xB45CB503000DE2A6;0xB45CB503000DE382;0xB45CB503000DE3FE;0xB45CB503000DE2AE;0xB45CB503000DDC0E;0xB45CB503000DE346;0xB45CB503000DE24E;0xB45CB503000DE2AA;0xB45CB503000DE34E;0xB45CB503000DDC4A
diff --git a/data/gpu_serial/J7Z7HG4.txt b/data/gpu_serial/J7Z7HG4.txt
deleted file mode 100644
index 006eb06..0000000
--- a/data/gpu_serial/J7Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-J7Z7HG4
-Slot.38: B45C:B503:000D:E1FA
-Slot.39: B45C:B503:000D:E26E
-Slot.37: B45C:B503:000D:E29E
-Slot.36: B45C:B503:000D:E28E
-Slot.32: B45C:B503:000D:E23A
-Slot.33: B45C:B503:000D:E262
-Slot.34: B45C:B503:000D:E28A
-Slot.35: B45C:B503:000D:E2BA
-Slot.31: B45C:B503:000D:DD2E
-Slot.40: B45C:B503:000D:DCCA
-GUID: 0xB45CB503000DE1FA;0xB45CB503000DE26E;0xB45CB503000DE29E;0xB45CB503000DE28E;0xB45CB503000DE23A;0xB45CB503000DE262;0xB45CB503000DE28A;0xB45CB503000DE2BA;0xB45CB503000DDD2E;0xB45CB503000DDCCA
diff --git a/data/gpu_serial/J8Z7HG4.txt b/data/gpu_serial/J8Z7HG4.txt
deleted file mode 100644
index 519887a..0000000
--- a/data/gpu_serial/J8Z7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-J8Z7HG4
-Slot.38: 3825:F303:0085:0556
-Slot.39: 3825:F303:0085:05A6
-Slot.37: 3825:F303:0085:04C2
-Slot.36: 3825:F303:0085:056E
-Slot.32: 3825:F303:0085:0592
-Slot.33: 3825:F303:0085:056A
-Slot.34: 3825:F303:0085:05AA
-Slot.35: 3825:F303:0085:04BE
-Slot.31: 3825:F303:0085:05BE
-Slot.40: 3825:F303:0085:0582
-GUID: 0x3825F30300850556;0x3825F303008505A6;0x3825F303008504C2;0x3825F3030085056E;0x3825F30300850592;0x3825F3030085056A;0x3825F303008505AA;0x3825F303008504BE;0x3825F303008505BE;0x3825F30300850582
diff --git a/data/gpu_serial/JF4F7G4.txt b/data/gpu_serial/JF4F7G4.txt
deleted file mode 100644
index 5f1c498..0000000
--- a/data/gpu_serial/JF4F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-JF4F7G4
-Slot.38: B45C:B503:000D:E316
-Slot.39: B45C:B503:000D:E2F6
-Slot.37: B45C:B503:000D:E2C6
-Slot.36: B45C:B503:000D:E2A2
-Slot.32: B45C:B503:000D:E2C2
-Slot.33: B45C:B503:000D:E2E6
-Slot.34: B45C:B503:000D:E29A
-Slot.35: B45C:B503:000D:E276
-Slot.31: B45C:B503:000D:E2D2
-Slot.40: B45C:B503:000D:E2E2
-GUID: 0xB45CB503000DE316;0xB45CB503000DE2F6;0xB45CB503000DE2C6;0xB45CB503000DE2A2;0xB45CB503000DE2C2;0xB45CB503000DE2E6;0xB45CB503000DE29A;0xB45CB503000DE276;0xB45CB503000DE2D2;0xB45CB503000DE2E2
diff --git a/data/guid_file/JF4F7G4.txt b/data/guid_file/JF4F7G4.txt
deleted file mode 100644
index 5f1c498..0000000
--- a/data/guid_file/JF4F7G4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-JF4F7G4
-Slot.38: B45C:B503:000D:E316
-Slot.39: B45C:B503:000D:E2F6
-Slot.37: B45C:B503:000D:E2C6
-Slot.36: B45C:B503:000D:E2A2
-Slot.32: B45C:B503:000D:E2C2
-Slot.33: B45C:B503:000D:E2E6
-Slot.34: B45C:B503:000D:E29A
-Slot.35: B45C:B503:000D:E276
-Slot.31: B45C:B503:000D:E2D2
-Slot.40: B45C:B503:000D:E2E2
-GUID: 0xB45CB503000DE316;0xB45CB503000DE2F6;0xB45CB503000DE2C6;0xB45CB503000DE2A2;0xB45CB503000DE2C2;0xB45CB503000DE2E6;0xB45CB503000DE29A;0xB45CB503000DE276;0xB45CB503000DE2D2;0xB45CB503000DE2E2
diff --git a/data/logs/2025-11-24.log b/data/logs/2025-11-24.log
deleted file mode 100644
index 35392c2..0000000
--- a/data/logs/2025-11-24.log
+++ /dev/null
@@ -1,684 +0,0 @@
-2025-11-24 16:23:44,003 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:23:44,030 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:23:44,030 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:23:44,055 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:23:44,090 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 16:23:44,090 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 16:23:44,090 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 16:23:44,690 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:23:44,710 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:23:44,710 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:23:44,726 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:23:44,739 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 16:23:44,741 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 16:23:52,286 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:52] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-24 16:23:52,316 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:52] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-24 16:23:52,359 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:52] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-24 16:23:52,414 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:52] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-24 16:23:58,612 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:23:58,612 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:23:58,676 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:23:58,676 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:23:58,676 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:23:58,676 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:23:58,677 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:58] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 16:23:58,717 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:58] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:23:58,735 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:23:58,745 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:23:58] "GET /static/script.js HTTP/1.1" 200 -
-2025-11-24 16:24:08,700 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:08] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 16:24:08,711 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:10,139 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:10] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 16:24:10,154 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:10,632 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:10] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:24:10,645 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:14,477 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:14] "GET /edit_xml/T8A_R6625_RAID_A.xml HTTP/1.1" 200 -
-2025-11-24 16:24:14,492 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:16,178 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:16] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:24:16,191 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:22,156 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:22] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:24:22,173 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:22,174 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:22] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:24:22,770 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:22] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:24:22,783 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:23,371 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:23] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:24:23,387 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:23,389 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:23] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:24:23,851 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:23] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:24:23,863 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:24,257 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:24] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:24:24,271 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:24:24,274 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:24] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:24:30,856 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:30] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:24:30,871 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:24:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:25:28,267 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:25:28] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:25:28,283 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:25:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:25:28,286 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:25:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:26:46,574 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:46] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:26:46,595 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:26:47,173 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:47] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:26:47,188 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:26:47,190 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:47] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:26:48,441 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:48] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:26:48,453 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:26:48,952 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:48] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:26:48,964 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:26:48,967 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:26:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:27:17,588 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:17] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:27:17,601 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:19,596 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:19] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:27:19,613 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:19,614 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:19] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:27:20,075 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:20] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:27:20,087 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:21,231 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:21] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:27:21,243 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:21,247 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:27:21,587 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:21] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:27:21,603 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:28,942 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:28] "GET /jobs HTTP/1.1" 200 -
-2025-11-24 16:27:28,957 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:28,965 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:28] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-24 16:27:28,985 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-24 16:27:28,986 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:28] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-24 16:27:33,846 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:33] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:27:33,860 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:34,536 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:34] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:27:34,548 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:34,552 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:34] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:27:35,135 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:35] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:27:35,147 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:35,691 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:35] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:27:35,705 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:35,706 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:35] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:27:54,433 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:54] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 16:27:54,447 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:27:56,102 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:56] "GET /edit_xml/R6615_raid.xml HTTP/1.1" 200 -
-2025-11-24 16:27:56,116 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:27:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:43:03,673 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:43:03,693 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:43:03,693 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:43:03,710 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:43:03,730 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 16:43:03,730 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 16:43:03,730 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 16:43:04,322 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:43:04,342 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:43:04,342 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:43:04,358 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:43:04,372 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 16:43:04,373 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 16:43:06,033 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:06] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 16:43:06,081 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:43:06,124 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 16:43:07,831 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:07] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 16:43:07,846 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:43:08,675 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:08] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:43:08,686 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:43:14,285 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:43:14,285 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:43:14,334 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:43:14,334 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:43:14,334 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:43:14,334 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:43:14,335 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:14] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 16:43:14,352 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:14] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:43:14,370 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:43:14,371 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:43:14] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:46:00,350 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:46:00,350 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:46:00,351 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:46:00] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 16:46:00,354 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:46:00] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:46:00,370 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:46:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:47:44,807 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:47:44,827 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:47:44,827 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:47:44,841 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:47:44,862 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 16:47:44,862 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 16:47:44,862 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 16:47:45,441 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:47:45,460 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:47:45,460 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:47:45,479 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:47:45,494 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 16:47:45,496 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 16:47:47,414 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:47:47] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:47:47,454 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:47:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:47:47,464 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:47:47] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 16:47:51,936 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:47:51,936 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:47:51,984 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:47:51,984 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:47:51,985 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:47:51,985 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:47:51,985 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:47:51] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 16:47:52,003 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:47:52] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:47:52,022 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:47:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:47:52,022 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:47:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:49:41,046 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:49:41,046 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:49:41,048 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:41] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 16:49:41,050 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:41] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:49:41,066 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:49:43,916 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:49:43,936 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:49:43,936 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:49:43,953 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:49:43,974 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 16:49:43,974 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 16:49:43,975 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 16:49:44,586 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:49:44,606 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:49:44,606 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:49:44,622 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:49:44,636 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 16:49:44,638 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 16:49:45,767 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:45] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:49:45,801 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:49:45,817 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:45] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 16:49:50,363 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:49:50,363 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:49:50,411 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:49:50,411 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:49:50,412 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:49:50,412 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:49:50,412 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:50] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 16:49:50,429 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:50] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:49:50,446 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:49:50,447 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:49:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:57:24,910 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:57:24,930 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:57:24,930 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:57:24,946 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:57:24,967 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 16:57:24,968 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 16:57:24,968 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 16:57:25,580 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:57:25,600 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:57:25,600 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:57:25,616 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:57:25,629 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 16:57:25,632 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 16:57:26,867 [INFO] app: LOGIN: already auth → /index
-2025-11-24 16:57:26,867 [INFO] app: LOGIN: already auth → /index
-2025-11-24 16:57:26,868 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:26] "[32mGET /login HTTP/1.1[0m" 302 -
-2025-11-24 16:57:26,893 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:26] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:57:26,973 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:26] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:57:26,975 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:57:27,029 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 16:57:28,419 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:57:28,419 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:57:28,420 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:28] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 16:57:28,425 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:28] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:57:28,441 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:57:34,916 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:57:34,916 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:57:34,968 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:57:34,968 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:57:34,968 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=MISSING
-2025-11-24 16:57:34,968 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=MISSING
-2025-11-24 16:57:34,968 [WARNING] app: Telegram notification skipped: Missing configuration or library.
-2025-11-24 16:57:34,968 [WARNING] app: Telegram notification skipped: Missing configuration or library.
-2025-11-24 16:57:34,970 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:57:34,970 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:57:34,970 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:34] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 16:57:34,975 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:34] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:57:34,993 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:57:34,994 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:57:34] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:58:17,994 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\check_telegram.py', reloading
-2025-11-24 16:58:18,038 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\check_telegram.py', reloading
-2025-11-24 16:58:18,039 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\check_telegram.py', reloading
-2025-11-24 16:58:18,379 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 16:58:19,034 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:58:19,055 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:58:19,055 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:58:19,072 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:58:19,086 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 16:58:19,089 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 16:58:42,574 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:42] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:58:42,632 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:58:42,633 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:42] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:58:44,677 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:58:44,677 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:58:44,678 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:44] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 16:58:44,684 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:44] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:58:44,702 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:58:49,916 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:58:49,916 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:58:49,966 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:58:49,966 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:58:49,966 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=MISSING
-2025-11-24 16:58:49,966 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=MISSING
-2025-11-24 16:58:49,966 [WARNING] app: Telegram notification skipped: Missing configuration or library.
-2025-11-24 16:58:49,966 [WARNING] app: Telegram notification skipped: Missing configuration or library.
-2025-11-24 16:58:49,966 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:58:49,966 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:58:49,967 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:49] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 16:58:49,972 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:49] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:58:49,993 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:58:49,993 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:58:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:59:34,417 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:59:34,438 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:59:34,438 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:59:34,453 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:59:34,473 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 16:59:34,473 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 16:59:34,474 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 16:59:35,084 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 16:59:35,104 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:59:35,104 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 16:59:35,121 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 16:59:35,136 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 16:59:35,138 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 16:59:36,736 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:59:36,736 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:59:36,737 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:36] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 16:59:36,747 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:36] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:59:36,783 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:59:42,340 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:59:42,340 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 16:59:42,391 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:59:42,391 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 16:59:42,391 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=MISSING
-2025-11-24 16:59:42,391 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=MISSING
-2025-11-24 16:59:42,392 [WARNING] app: Telegram notification skipped: Missing configuration or library.
-2025-11-24 16:59:42,392 [WARNING] app: Telegram notification skipped: Missing configuration or library.
-2025-11-24 16:59:42,392 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:59:42,392 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 16:59:42,392 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:42] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 16:59:42,407 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:42] "GET /index HTTP/1.1" 200 -
-2025-11-24 16:59:42,428 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 16:59:42,429 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:42] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 16:59:50,145 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:59:50,145 [INFO] app: LOGOUT: user=김강희
-2025-11-24 16:59:50,146 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:50] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 16:59:50,150 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:50] "GET /login HTTP/1.1" 200 -
-2025-11-24 16:59:50,164 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 16:59:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:06:17,663 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:06:17,684 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:06:17,684 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:06:17,700 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:06:17,722 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 17:06:17,722 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 17:06:17,722 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 17:06:18,428 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:06:18,448 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:06:18,448 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:06:18,463 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:06:18,477 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 17:06:18,479 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 17:06:18,548 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:18] "[32mGET /index HTTP/1.1[0m" 302 -
-2025-11-24 17:06:18,558 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:18] "GET /login?next=/index HTTP/1.1" 200 -
-2025-11-24 17:06:18,602 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:06:18,643 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:18] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 17:06:24,340 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:06:24,340 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:06:24,396 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:06:24,396 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:06:24,396 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:06:24,396 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:06:24,397 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:06:24,397 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:06:24,398 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:24] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 17:06:24,418 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:24] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:06:24,437 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:06:24,438 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:06:24] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:06:26,931 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:09:29,579 [INFO] app: LOGOUT: user=김강희
-2025-11-24 17:09:29,579 [INFO] app: LOGOUT: user=김강희
-2025-11-24 17:09:29,580 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:29] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 17:09:29,583 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:29] "GET /login HTTP/1.1" 200 -
-2025-11-24 17:09:29,602 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:09:33,150 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:09:33,173 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:09:33,173 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:09:33,190 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:09:33,210 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 17:09:33,211 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 17:09:33,211 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 17:09:33,914 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:09:33,934 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:09:33,934 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:09:33,949 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:09:33,964 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 17:09:33,966 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 17:09:34,397 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:34] "GET /login HTTP/1.1" 200 -
-2025-11-24 17:09:34,435 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:09:34,444 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:34] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 17:09:40,004 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:09:40,004 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:09:40,052 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:09:40,052 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:09:40,053 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:09:40,053 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:09:40,053 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:09:40,053 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:09:40,054 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:40] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 17:09:40,071 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:40] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:09:40,090 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:09:40,090 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:09:40] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:09:41,447 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:11:04,806 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-24 17:11:04,806 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-24 17:11:04,807 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-24 17:11:05,574 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 17:17:15,522 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:17:15,543 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:15,543 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:15,560 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:17:15,582 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 17:17:15,582 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 17:17:15,583 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 17:17:16,314 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:17:16,336 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:16,336 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:16,353 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:17:16,367 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 17:17:16,369 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 17:17:16,953 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:16,953 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:16,973 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:16] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:17:17,034 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:17:17,035 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:17] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:17:17,095 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:17] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 17:17:18,155 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:18,155 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:18,158 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:18] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 17:17:18,176 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:17:18,440 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:19,064 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:19,064 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:19,064 [INFO] app: LOGOUT: user=김강희
-2025-11-24 17:17:19,064 [INFO] app: LOGOUT: user=김강희
-2025-11-24 17:17:19,064 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:19,064 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:19,065 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:19] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 17:17:19,070 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:19] "GET /login HTTP/1.1" 200 -
-2025-11-24 17:17:19,085 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:17:19,454 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:20,491 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:20,517 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:25,147 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:17:25,167 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:25,167 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:25,183 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:17:25,203 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 17:17:25,204 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 17:17:25,204 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 17:17:25,903 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:17:25,924 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:25,924 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:17:25,940 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:17:25,953 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 17:17:25,955 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 17:17:36,901 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:17:36,901 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:17:36,954 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:17:36,954 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:17:36,954 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:36,954 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:36,956 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:17:36,956 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:17:36,957 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:36] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 17:17:36,961 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:36,961 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:36,982 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:36] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:17:37,034 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:17:37,035 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:37] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:17:38,456 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:38,490 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:48,010 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:48,010 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:48,013 [INFO] root: [AJAX] 작업 시작: 1763972268.0111287, script: 01-settings.py
-2025-11-24 17:17:48,014 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:48] "POST /process_ips HTTP/1.1" 200 -
-2025-11-24 17:17:48,025 [INFO] root: 🔧 실행 명령: D:\Code\imges_ocr\venv312\Scripts\python.exe D:\Code\iDRAC_Info\idrac_info\data\scripts\01-settings.py D:\Code\iDRAC_Info\idrac_info\data\temp_ip\ip_0.txt
-2025-11-24 17:17:48,182 [INFO] root: [10.10.0.1] ✅ stdout:
-오류 발생: IP 10.10.0.1 에 대한 SVC Tag 가져오기 실패
-정보 수집 완료.
-수집 완료 시간: 0 시간, 0 분, 0 초.
-
-2025-11-24 17:17:48,519 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:48,519 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:48,519 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:48] "GET /progress_status/1763972268.0111287 HTTP/1.1" 200 -
-2025-11-24 17:17:49,327 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:49,853 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:50,032 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:50,032 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:50,035 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:50] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:17:50,051 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:17:50,054 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:17:50,077 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 17:17:51,340 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:17:59,126 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:59,126 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:17:59,132 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:59] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 17:17:59,146 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:17:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:00,432 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:00,582 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:00,582 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:00,587 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:00] "GET /jobs HTTP/1.1" 200 -
-2025-11-24 17:18:00,603 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:00,614 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:00,614 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:00,614 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:00] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-24 17:18:00,634 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:00,634 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:00,634 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-24 17:18:00,634 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:00] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-24 17:18:02,070 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:02,106 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:02,162 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:03,986 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:03,986 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:03,989 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:03] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 17:18:04,001 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:04,638 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:04,638 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:04,647 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:04] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:18:04,661 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:04,663 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:04] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:18:05,231 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,231 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,234 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:05] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 17:18:05,248 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:05,301 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:05,614 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,614 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,615 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:05] "GET /jobs HTTP/1.1" 200 -
-2025-11-24 17:18:05,630 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:05,642 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,642 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,644 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:05] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-24 17:18:05,655 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,655 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:05,656 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-24 17:18:05,657 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:05] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-24 17:18:05,963 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:06,138 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:06,138 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:06,146 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:06] "GET /admin HTTP/1.1" 200 -
-2025-11-24 17:18:06,159 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:06,547 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:07,125 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:07,155 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:07,180 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:07,474 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:09,491 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:09,491 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:09,495 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:09] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:18:09,508 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:09,512 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:09] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:18:11,282 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:17,413 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:17,413 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:17,414 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:17] "[33mGET /moniter HTTP/1.1[0m" 404 -
-2025-11-24 17:18:17,452 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:17] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
-2025-11-24 17:18:18,720 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:24,648 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:24,648 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:24,652 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:24] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 17:18:24,664 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:25,978 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:26,133 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,133 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,137 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:26] "GET /admin HTTP/1.1" 200 -
-2025-11-24 17:18:26,149 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:26,463 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,463 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,464 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:26] "GET /jobs HTTP/1.1" 200 -
-2025-11-24 17:18:26,479 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:26,490 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,490 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,491 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:26] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-24 17:18:26,502 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,502 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:26,502 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-24 17:18:26,503 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:26] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-24 17:18:27,440 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:27,941 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:27,971 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:28,010 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:29,254 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:29,254 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:29,257 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:29] "GET /xml_management HTTP/1.1" 200 -
-2025-11-24 17:18:29,270 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:30,162 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:30,162 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:30,164 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:30] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 17:18:30,180 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:18:30,530 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:31,470 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:18:58,945 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:58,945 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:58,946 [INFO] app: LOGOUT: user=김강희
-2025-11-24 17:18:58,946 [INFO] app: LOGOUT: user=김강희
-2025-11-24 17:18:58,946 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:58,946 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:18:58,947 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:58] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 17:18:58,953 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:58] "GET /login HTTP/1.1" 200 -
-2025-11-24 17:18:58,965 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:18:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:19:02,424 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:19:02,444 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:19:02,444 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:19:02,459 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:19:02,482 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 17:19:02,482 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 17:19:02,482 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 17:19:03,191 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:19:03,210 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:19:03,210 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:19:03,226 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:19:03,240 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 17:19:03,242 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 17:36:28,877 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:36:28,899 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:36:28,899 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:36:28,919 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:36:28,943 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 17:36:28,943 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 17:36:28,943 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 17:36:29,684 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 17:36:29,704 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:36:29,704 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 17:36:29,722 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 17:36:29,736 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 17:36:29,739 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 17:36:31,166 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:36:31] "GET /login HTTP/1.1" 200 -
-2025-11-24 17:36:31,209 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:36:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:36:31,230 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:36:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 17:36:37,567 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:36:37,567 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-24 17:36:37,621 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:36:37,621 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-24 17:36:37,621 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:36:37,621 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:36:37,621 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:36:37,621 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-24 17:36:37,623 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:36:37] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-24 17:36:37,626 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:36:37,626 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 17:36:37,643 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:36:37] "GET /index HTTP/1.1" 200 -
-2025-11-24 17:36:37,662 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:36:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 17:36:37,665 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 17:36:37] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 17:36:39,139 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 17:36:39,167 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 18:05:50,478 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 18:05:50,499 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 18:05:50,499 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 18:05:50,515 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 18:05:50,535 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-24 18:05:50,535 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-24 18:05:50,536 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-24 18:05:51,256 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-24 18:05:51,276 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 18:05:51,276 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-24 18:05:51,291 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-24 18:05:51,305 [WARNING] werkzeug: * Debugger is active!
-2025-11-24 18:05:51,308 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-24 18:05:51,329 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:51,329 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:51,337 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:51] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 18:05:51,377 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 18:05:51,409 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:51,409 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:51,411 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:51] "GET /home/ HTTP/1.1" 200 -
-2025-11-24 18:05:51,427 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 18:05:51,446 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-24 18:05:52,762 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 18:05:52,797 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:52,797 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:52,801 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 18:05:52,816 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:52] "GET /index HTTP/1.1" 200 -
-2025-11-24 18:05:52,832 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 18:05:52,833 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-24 18:05:54,028 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 18:05:54,426 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:54,426 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:54,427 [INFO] app: LOGOUT: user=김강희
-2025-11-24 18:05:54,427 [INFO] app: LOGOUT: user=김강희
-2025-11-24 18:05:54,427 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:54,427 [INFO] app: Telegram Debug: Token=OK, ChatID=OK, Lib=OK
-2025-11-24 18:05:54,429 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:54] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-24 18:05:54,434 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:54] "GET /login HTTP/1.1" 200 -
-2025-11-24 18:05:54,451 [INFO] werkzeug: 127.0.0.1 - - [24/Nov/2025 18:05:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-24 18:05:55,766 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-24 18:05:55,801 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
diff --git a/data/logs/2025-11-26.log b/data/logs/2025-11-26.log
deleted file mode 100644
index 0a23516..0000000
--- a/data/logs/2025-11-26.log
+++ /dev/null
@@ -1,8939 +0,0 @@
-2025-11-26 19:47:00,062 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 19:47:00,083 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:47:00,083 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:47:00,104 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 19:47:00,141 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 19:47:00,142 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 19:47:00,142 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 19:47:00,860 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 19:47:00,880 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:47:00,880 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:47:00,898 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 19:47:00,913 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 19:47:00,916 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 19:47:04,443 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:04] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-26 19:47:04,467 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:04] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-26 19:47:04,516 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:47:35,222 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 19:47:35,222 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 19:47:35,290 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-26 19:47:35,290 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-26 19:47:35,295 [INFO] app: Telegram: Config settings migrated to DB.
-2025-11-26 19:47:35,295 [INFO] app: Telegram: Config settings migrated to DB.
-2025-11-26 19:47:35,296 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 19:47:35,296 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 19:47:35,297 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:35] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 19:47:35,299 [ERROR] app: Telegram async loop error: Instance
is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)
-2025-11-26 19:47:35,299 [ERROR] app: Telegram async loop error: Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)
-2025-11-26 19:47:35,315 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:35] "GET /index HTTP/1.1" 200 -
-2025-11-26 19:47:35,339 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:47:35,350 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:35] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 19:47:36,726 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:47:37,848 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:37] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 19:47:37,868 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:47:37,905 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:37] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 19:47:37,912 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 19:47:37,913 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:37] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 19:47:38,504 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:38] "GET /admin HTTP/1.1" 200 -
-2025-11-26 19:47:38,517 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:47:39,247 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:47:39,315 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:47:39,363 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:47:39,868 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:47:40,377 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:40] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 19:47:40,394 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:47:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:47:41,622 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:51:21,100 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 19:51:21,122 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:51:21,122 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:51:21,141 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 19:51:21,163 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 19:51:21,163 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 19:51:21,163 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 19:51:21,906 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 19:51:21,926 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:51:21,926 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:51:21,943 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 19:51:21,956 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 19:51:21,958 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 19:51:22,556 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:51:22] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 19:51:22,598 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:51:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:51:22,621 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:51:22] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 19:51:23,863 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:51:32,537 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:51:32] "GET /admin HTTP/1.1" 200 -
-2025-11-26 19:51:32,552 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:51:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:51:33,773 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:51:36,014 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:51:36] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 19:51:36,028 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 19:51:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 19:51:37,237 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 19:53:58,463 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\telegram_bot.py', reloading
-2025-11-26 19:53:58,464 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\telegram_bot.py', reloading
-2025-11-26 19:53:59,450 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 19:54:00,189 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 19:54:00,211 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:54:00,211 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:54:00,228 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 19:54:00,243 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 19:54:00,245 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 19:54:27,494 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\admin.py', reloading
-2025-11-26 19:54:27,494 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\admin.py', reloading
-2025-11-26 19:54:27,752 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 19:54:28,497 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 19:54:28,518 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:54:28,518 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 19:54:28,536 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 19:54:28,550 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 19:54:28,551 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 19:55:05,661 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-26 19:55:05,661 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-26 19:55:05,662 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-26 19:55:05,662 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-26 19:55:06,211 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:00:01,671 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:00:01,689 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:01,689 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:01,709 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:00:01,730 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 20:00:01,730 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 20:00:01,730 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:00:02,422 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:00:02,441 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:02,441 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:02,459 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:00:02,473 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:00:02,475 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:00:05,402 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:05,402 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:05,416 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\flask\\app.py', reloading
-2025-11-26 20:00:05,425 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\flask_socketio\\__init__.py', reloading
-2025-11-26 20:00:05,434 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\engineio\\middleware.py', reloading
-2025-11-26 20:00:05,441 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\flask_login\\mixins.py', reloading
-2025-11-26 20:00:05,454 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\sqlalchemy\\orm\\attributes.py', reloading
-2025-11-26 20:00:05,463 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\sqlalchemy\\orm\\state.py', reloading
-2025-11-26 20:00:05,475 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\sqlalchemy\\orm\\loading.py', reloading
-2025-11-26 20:00:05,490 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\sqlalchemy\\orm\\session.py', reloading
-2025-11-26 20:00:05,499 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\sqlalchemy\\orm\\state_changes.py', reloading
-2025-11-26 20:00:05,503 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:05] "[35m[1mGET /admin/settings HTTP/1.1[0m" 500 -
-2025-11-26 20:00:05,652 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:00:06,371 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:00:06,395 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:06,395 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:06,421 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:00:06,437 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:00:06,439 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:00:06,501 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:06] "GET /admin/settings?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-26 20:00:06,528 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:06] "GET /admin/settings?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-26 20:00:15,777 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:15,777 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:15,787 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:15] "[35m[1mGET /admin HTTP/1.1[0m" 500 -
-2025-11-26 20:00:15,800 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:15] "GET /admin?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-26 20:00:15,802 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:15] "GET /admin?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-26 20:00:15,816 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:15] "GET /admin?__debugger__=yes&cmd=resource&f=console.png&s=jF974nDQqdAVzhunkkGN HTTP/1.1" 200 -
-2025-11-26 20:00:15,833 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:15] "GET /admin?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-26 20:00:17,330 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:17] "GET /admin/settings?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-26 20:00:17,337 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:17] "GET /admin/settings?__debugger__=yes&cmd=resource&f=console.png&s=7qyRO5czA4LmEAL45Jzl HTTP/1.1" 200 -
-2025-11-26 20:00:19,779 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:19,779 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:19,783 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:19] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-26 20:00:19,796 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:19] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-26 20:00:19,800 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:19] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-26 20:00:19,811 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:19] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=jF974nDQqdAVzhunkkGN HTTP/1.1" 200 -
-2025-11-26 20:00:19,829 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:19] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-26 20:00:46,090 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:00:46,112 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:46,112 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:46,131 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:00:46,156 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 20:00:46,156 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 20:00:46,156 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:00:46,860 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:00:46,880 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:46,880 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:00:46,898 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:00:46,912 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:00:46,914 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:00:47,913 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:47,913 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:47,921 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:47] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-26 20:00:47,967 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:47] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:00:47,969 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:47] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-26 20:00:47,982 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:47] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=RUSmwiMEZ8TVWG6KLEUQ HTTP/1.1" 200 -
-2025-11-26 20:00:47,990 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:47] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-26 20:00:49,677 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:49,677 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:49,683 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:49] "[35m[1mGET /jobs HTTP/1.1[0m" 500 -
-2025-11-26 20:00:49,698 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:49] "GET /jobs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-26 20:00:49,702 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:49] "GET /jobs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-26 20:00:49,713 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:49] "GET /jobs?__debugger__=yes&cmd=resource&f=console.png&s=RUSmwiMEZ8TVWG6KLEUQ HTTP/1.1" 200 -
-2025-11-26 20:00:49,730 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:49] "GET /jobs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-26 20:00:50,821 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:50,821 [ERROR] app: Telegram notification error: (sqlite3.OperationalError) table telegram_bots has no column named notification_types
-[SQL: INSERT INTO telegram_bots (name, token, chat_id, is_active, description, notification_types) VALUES (?, ?, ?, ?, ?, ?)]
-[parameters: ('기본 봇 (Config)', '6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo', '298120612', 1, 'config.py 설정에서 자동 가져옴', 'auth,activity,system')]
-(Background on this error at: https://sqlalche.me/e/20/e3q8)
-2025-11-26 20:00:50,827 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:50] "[35m[1mGET /index HTTP/1.1[0m" 500 -
-2025-11-26 20:00:50,840 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:50] "GET /index?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-26 20:00:50,843 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:50] "GET /index?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-26 20:00:50,852 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:50] "GET /index?__debugger__=yes&cmd=resource&f=console.png&s=RUSmwiMEZ8TVWG6KLEUQ HTTP/1.1" 200 -
-2025-11-26 20:00:50,872 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:00:50] "GET /index?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-26 20:02:54,819 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:02:54,839 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:02:54,839 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:02:54,856 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:02:54,882 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 20:02:54,882 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 20:02:54,882 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:02:55,583 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:02:55,605 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:02:55,605 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:02:55,623 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:02:55,639 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:02:55,640 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:02:56,423 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:02:56] "GET /index HTTP/1.1" 200 -
-2025-11-26 20:02:56,496 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:02:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:02:56,498 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:02:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 20:02:56,531 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:02:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 20:02:57,793 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:03:00,256 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:03:00] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:03:00,273 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:03:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:03:01,465 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:03:01,589 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\flask_login\\utils.py', reloading
-2025-11-26 20:03:01,597 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\flask\\templating.py', reloading
-2025-11-26 20:03:01,608 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\jinja2\\environment.py', reloading
-2025-11-26 20:03:01,617 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\jinja2\\loaders.py', reloading
-2025-11-26 20:03:01,622 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:03:01] "[35m[1mGET /admin/settings HTTP/1.1[0m" 500 -
-2025-11-26 20:03:01,634 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:03:01] "[36mGET /admin/settings?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:03:01,637 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:03:01] "[36mGET /admin/settings?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-26 20:03:01,644 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:03:01] "GET /admin/settings?__debugger__=yes&cmd=resource&f=console.png&s=YuQVUCkA416bKTDhzfZ7 HTTP/1.1" 200 -
-2025-11-26 20:03:01,899 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:03:02,626 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:03:02,650 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:03:02,650 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:03:02,671 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:03:02,690 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:03:02,692 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:11:18,905 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:11:18,928 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:11:18,928 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:11:18,947 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:11:18,974 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 20:11:18,974 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 20:11:18,974 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:11:19,734 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:11:19,754 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:11:19,754 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:11:19,773 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:11:19,789 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:11:19,791 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:11:21,014 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:21] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:11:21,064 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:11:21,115 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 20:11:22,315 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:22] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:11:22,331 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:11:22,356 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:11:23,550 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:11:31,386 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:31] "[32mPOST /admin/settings/bot/edit/1 HTTP/1.1[0m" 302 -
-2025-11-26 20:11:31,391 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:31] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:11:31,410 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:11:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:11:31,733 [ERROR] app: Telegram async loop error: Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)
-2025-11-26 20:11:31,733 [ERROR] app: Telegram async loop error: Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)
-2025-11-26 20:12:45,235 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\venv\\Lib\\site-packages\\pip\\__init__.py', reloading
-2025-11-26 20:12:46,299 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:12:47,046 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:12:47,068 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:12:47,068 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:12:47,084 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:12:47,100 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:12:47,102 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:13:13,918 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:13] "[32mPOST /admin/settings/bot/edit/1 HTTP/1.1[0m" 302 -
-2025-11-26 20:13:13,935 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:13] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:13:13,983 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:13:45,413 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:45] "[32mPOST /admin/settings/bot/edit/1 HTTP/1.1[0m" 302 -
-2025-11-26 20:13:45,418 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:45] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:13:45,443 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:13:55,941 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:55] "[32mPOST /admin/settings/bot/edit/1 HTTP/1.1[0m" 302 -
-2025-11-26 20:13:55,946 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:55] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:13:55,966 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:13:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:14:57,324 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:14:57] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 20:14:57,343 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:14:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:14:58,999 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:14:58] "GET /index HTTP/1.1" 200 -
-2025-11-26 20:14:59,017 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:14:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:14:59,019 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:14:59] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 20:15:01,790 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:01] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 20:15:01,804 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:14,986 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:14] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 20:15:15,001 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:17,837 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:17] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 20:15:17,852 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:17,862 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:17] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 20:15:17,876 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 20:15:17,876 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:17] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 20:15:20,887 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:20] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 20:15:20,902 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:20,908 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:20] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 20:15:20,928 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 20:15:20,928 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:20] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 20:15:21,396 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:21] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:15:21,409 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:23,273 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:23] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:15:23,287 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:31,064 [INFO] app: LOGOUT: user=김강희
-2025-11-26 20:15:31,064 [INFO] app: LOGOUT: user=김강희
-2025-11-26 20:15:31,065 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:31] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-26 20:15:31,072 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:31] "GET /login HTTP/1.1" 200 -
-2025-11-26 20:15:31,087 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:32,415 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:15:43,203 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 20:15:43,203 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 20:15:43,267 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-26 20:15:43,267 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-26 20:15:43,269 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 20:15:43,269 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 20:15:43,270 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:43] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 20:15:43,281 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:43] "GET /index HTTP/1.1" 200 -
-2025-11-26 20:15:43,303 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:43,304 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 20:15:44,537 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:15:47,791 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:47] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:15:47,806 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:48,467 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:48] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:15:48,482 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:15:55,957 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:55] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 20:15:55,971 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:15:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:19:56,077 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:19:56] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 20:19:56,094 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:19:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:24:26,130 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:24:26] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 20:24:26,150 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:24:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:24:26,161 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:24:26] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 20:24:27,257 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:24:27] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:24:27,273 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:24:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:24:27,813 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:24:27] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:24:27,829 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:24:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:37:07,468 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:37:07] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:37:07,483 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:37:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:37:08,548 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:37:08] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:37:08,565 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:37:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:39:24,517 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:39:24,538 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:39:24,538 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:39:24,557 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:39:24,580 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 20:39:24,580 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 20:39:24,580 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:39:25,298 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:39:25,320 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:39:25,320 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:39:25,337 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:39:25,352 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:39:25,354 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:39:28,545 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:39:28] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:39:28,585 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:39:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:39:28,596 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:39:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 20:39:29,903 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:39:29] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:39:29,924 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:39:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:39:30,999 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:39:30] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:39:31,016 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:39:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:40:28,543 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:40:28] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:40:28,559 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:40:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:40:28,586 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:40:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 20:40:30,173 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:40:30] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:40:30,189 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:40:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:40:31,194 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:40:31] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:40:31,211 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:40:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:44:47,301 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:44:47] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:44:47,320 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:44:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:44:47,343 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:44:47] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 20:48:42,036 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:48:42,054 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-26 20:48:42,104 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-26 20:48:42,537 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:48:42,555 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-26 20:48:42,579 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-26 20:48:42,856 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:48:42,871 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-26 20:48:42,896 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:42] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-26 20:48:43,032 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:43] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:48:43,049 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:43] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-26 20:48:43,073 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:43] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-26 20:48:43,161 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:43] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:48:43,178 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:43] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-26 20:48:43,204 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:48:43] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-26 20:51:45,727 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\check_telegram.py', reloading
-2025-11-26 20:51:46,225 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 20:51:47,013 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 20:51:47,033 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:51:47,033 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 20:51:47,055 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 20:51:47,071 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 20:51:47,073 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 20:53:24,713 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:53:24] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:53:24,759 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:53:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:53:24,771 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:53:24] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 20:53:40,922 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:53:40] "[32mPOST /admin/settings/bot/edit/1 HTTP/1.1[0m" 302 -
-2025-11-26 20:53:40,926 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:53:40] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:53:40,947 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:53:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:14,707 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:14] "GET /index HTTP/1.1" 200 -
-2025-11-26 20:55:14,727 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:14,731 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:14] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 20:55:24,714 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:24] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 20:55:24,731 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:26,068 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:26] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 20:55:26,084 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:29,958 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:29] "GET /edit_xml/T8A_R6625_RAID_A.xml HTTP/1.1" 200 -
-2025-11-26 20:55:29,972 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:31,847 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:31] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 20:55:31,861 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:35,059 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:35] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 20:55:35,072 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:35,083 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:35] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 20:55:35,096 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 20:55:35,096 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:35] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 20:55:35,553 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:35] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 20:55:35,567 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:37,157 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:37] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 20:55:37,171 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:37,178 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:37] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 20:55:37,196 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 20:55:37,196 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:37] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 20:55:40,004 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:40] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:55:40,019 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:41,543 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:41] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:55:41,559 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:47,746 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:47] "[32mPOST /admin/settings/bot/edit/1 HTTP/1.1[0m" 302 -
-2025-11-26 20:55:47,752 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:47] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:55:47,774 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:49,117 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:55:49,318 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:49] "GET /index HTTP/1.1" 200 -
-2025-11-26 20:55:49,332 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:49,335 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 20:55:50,565 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:55:55,885 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:55] "GET /admin HTTP/1.1" 200 -
-2025-11-26 20:55:55,900 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:56,545 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:56] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:55:56,561 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:55:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:55:57,112 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:55:57,787 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 20:56:01,169 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:56:01] "[32mPOST /admin/settings/bot/edit/1 HTTP/1.1[0m" 302 -
-2025-11-26 20:56:01,173 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:56:01] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 20:56:01,193 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:56:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 20:56:01,514 [ERROR] app: Telegram async loop error: Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)
-2025-11-26 20:56:01,514 [ERROR] app: Telegram async loop error: Instance is not bound to a Session; attribute refresh operation cannot proceed (Background on this error at: https://sqlalche.me/e/20/bhk3)
-2025-11-26 20:56:02,678 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:56:02] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 20:56:02,694 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 20:56:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:04:22,519 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:04:22,519 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:04:22,521 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:22] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-26 21:04:22,526 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:22] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:04:22,546 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:04:23,845 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:04:27,276 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:27] "GET /register HTTP/1.1" 200 -
-2025-11-26 21:04:27,293 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:04:41,546 [INFO] app: REGISTER: form errors={'password': ['비밀번호에 대문자가 1자 이상 포함되어야 합니다.', '비밀번호에 특수문자가 1자 이상 포함되어야 합니다.']}
-2025-11-26 21:04:41,546 [INFO] app: REGISTER: form errors={'password': ['비밀번호에 대문자가 1자 이상 포함되어야 합니다.', '비밀번호에 특수문자가 1자 이상 포함되어야 합니다.']}
-2025-11-26 21:04:41,547 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:41] "POST /register HTTP/1.1" 200 -
-2025-11-26 21:04:41,561 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:04:52,369 [INFO] app: REGISTER: created id=3 email=test@test.com
-2025-11-26 21:04:52,369 [INFO] app: REGISTER: created id=3 email=test@test.com
-2025-11-26 21:04:52,370 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:52] "[32mPOST /register HTTP/1.1[0m" 302 -
-2025-11-26 21:04:52,372 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:52] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:04:52,394 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:04:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:04:53,620 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:05:14,842 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:05:14,842 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:05:14,895 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-26 21:05:14,895 [INFO] app: LOGIN: found id=1 active=True pass_ok=True
-2025-11-26 21:05:14,896 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:05:14,896 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:05:14,897 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:05:14] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 21:05:14,903 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:05:14] "GET /index HTTP/1.1" 200 -
-2025-11-26 21:05:14,926 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:05:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:05:14,928 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:05:14] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 21:05:16,207 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:05:17,066 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:05:17] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:05:17,078 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:05:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:06:25,801 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\migrate_passwords.py', reloading
-2025-11-26 21:06:25,807 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\update_db.py', reloading
-2025-11-26 21:06:25,807 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\tests\\test_redfish_client.py', reloading
-2025-11-26 21:06:25,809 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\migrations\\env.py', reloading
-2025-11-26 21:06:25,818 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts_back\\01-settings.py', reloading
-2025-11-26 21:06:25,824 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\server_list\\excel.py', reloading
-2025-11-26 21:06:25,824 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\GPU_Serial_v1.py', reloading
-2025-11-26 21:06:25,824 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\collect_idrac_info.py', reloading
-2025-11-26 21:06:25,825 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\09-Log_Viewer.py', reloading
-2025-11-26 21:06:25,825 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\08-job_delete_all.py', reloading
-2025-11-26 21:06:25,825 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\07-PowerOFF.py', reloading
-2025-11-26 21:06:25,825 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\06-PowerON.py', reloading
-2025-11-26 21:06:25,825 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\05-clrsel.py', reloading
-2025-11-26 21:06:25,825 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\04-tsr_save.py', reloading
-2025-11-26 21:06:25,825 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\03-tsr_log.py', reloading
-2025-11-26 21:06:25,826 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\02-set_config.py', reloading
-2025-11-26 21:06:25,826 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\01-settings.py', reloading
-2025-11-26 21:06:25,826 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\server_list\\GPUTOExecl.py', reloading
-2025-11-26 21:06:25,827 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\config.py', reloading
-2025-11-26 21:06:25,830 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\socketio_events.py', reloading
-2025-11-26 21:06:25,832 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\services\\redfish_client.py', reloading
-2025-11-26 21:06:25,833 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\services\\watchdog_handler.py', reloading
-2025-11-26 21:06:25,833 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\services\\logger.py', reloading
-2025-11-26 21:06:25,833 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\services\\ip_processor.py', reloading
-2025-11-26 21:06:25,833 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\services\\idrac_redfish_client.py', reloading
-2025-11-26 21:06:25,834 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\services\\idrac_jobs.py', reloading
-2025-11-26 21:06:25,834 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\services\\dell_catalog_sync.py', reloading
-2025-11-26 21:06:25,835 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\__init__.py', reloading
-2025-11-26 21:06:25,835 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\xml.py', reloading
-2025-11-26 21:06:25,835 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\version_compare_api.py', reloading
-2025-11-26 21:06:25,835 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\utilities.py', reloading
-2025-11-26 21:06:25,835 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\main.py', reloading
-2025-11-26 21:06:25,836 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\jobs.py', reloading
-2025-11-26 21:06:25,836 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\idrac_routes_base.py', reloading
-2025-11-26 21:06:25,836 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\user.py', reloading
-2025-11-26 21:06:25,836 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\idrac_routes.py', reloading
-2025-11-26 21:06:25,837 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\telegram_bot.py', reloading
-2025-11-26 21:06:25,837 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\home.py', reloading
-2025-11-26 21:06:25,837 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\idrac_server.py', reloading
-2025-11-26 21:06:25,837 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\file_view.py', reloading
-2025-11-26 21:06:25,838 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\firmware_version.py', reloading
-2025-11-26 21:06:25,838 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\catalog_sync.py', reloading
-2025-11-26 21:06:25,838 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\auth.py', reloading
-2025-11-26 21:06:25,838 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\routes\\admin.py', reloading
-2025-11-26 21:06:25,838 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\forms\\auth_forms.py', reloading
-2025-11-26 21:06:25,838 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\server_list\\GUIDtxtT0Execl.py', reloading
-2025-11-26 21:06:25,845 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\PortGUID.py', reloading
-2025-11-26 21:06:25,845 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\PortGUID_v1.py', reloading
-2025-11-26 21:06:25,873 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\TYPE11_Server_info.py', reloading
-2025-11-26 21:06:25,873 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\TYPE11_MAC_info.py', reloading
-2025-11-26 21:06:25,904 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\scripts\\XE9680_H200_IB_10EA_MAC_info.py', reloading
-2025-11-26 21:06:25,951 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\data\\server_list\\server_info_zip.py', reloading
-2025-11-26 21:06:26,680 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:06:27,407 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:06:27,429 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:06:27,429 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:06:27,448 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:06:27,463 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:06:27,466 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:06:44,186 [INFO] root: 🗑 삭제된 사용자: 테스트 (id=3)
-2025-11-26 21:06:44,187 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:06:44] "[32mGET /admin/delete/3 HTTP/1.1[0m" 302 -
-2025-11-26 21:06:44,201 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:06:44] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:06:44,254 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:06:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:06:47,794 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\user.py', reloading
-2025-11-26 21:06:47,794 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\backend\\models\\user.py', reloading
-2025-11-26 21:06:48,899 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:11:32,532 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:11:32,554 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:11:32,554 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:11:32,571 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:12:40,365 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:12:40,386 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:12:40,386 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:12:40,404 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:12:53,170 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:12:53,191 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:12:53,191 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:12:53,208 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:12:53,222 [INFO] __main__: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:12:54,324 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:12:54,325 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:12:54,554 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:12:54,555 [INFO] __main__: Bot polling started successfully
-2025-11-26 21:13:05,244 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:13:15,474 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:13:17,180 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:13:17,200 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:13:17,200 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:13:17,218 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:13:17,241 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:13:17,242 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:13:17,242 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:13:17,947 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:13:17,968 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:13:17,968 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:13:17,985 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:13:17,999 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:13:18,001 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:13:22,035 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:22] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:13:22,088 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:13:22,130 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:22] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:13:25,313 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:25] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:13:25,332 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:13:25,705 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:13:25,844 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:25] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:13:25,859 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:13:26,645 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:13:26,645 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:13:26,647 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:26] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-26 21:13:26,652 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:26] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:13:26,668 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:13:28,014 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:13:33,347 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:33] "GET /register HTTP/1.1" 200 -
-2025-11-26 21:13:33,361 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:13:35,935 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:13:46,166 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:13:48,086 [INFO] app: REGISTER: created id=3 email=test@test.com token=vuvptcWrhc
-2025-11-26 21:13:48,086 [INFO] app: REGISTER: created id=3 email=test@test.com token=vuvptcWrhc
-2025-11-26 21:13:48,086 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:48] "[32mPOST /register HTTP/1.1[0m" 302 -
-2025-11-26 21:13:48,090 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:48] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:13:48,108 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:13:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:13:49,350 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:13:53,907 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:13:54,766 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/answerCallbackQuery "HTTP/1.1 200 OK"
-2025-11-26 21:13:54,767 [INFO] __main__: Received callback: approve_vuvptcWrhcyK09733e_camu89LA2oIj-fWm5oFEEYA4
-2025-11-26 21:13:55,182 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/editMessageText "HTTP/1.1 200 OK"
-2025-11-26 21:13:55,182 [INFO] __main__: User 테스트 approved
-2025-11-26 21:14:04,139 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:14:06,243 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:14:06,243 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:14:06,294 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:14:06,294 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:14:06,296 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:14:06,296 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:14:06,297 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:06] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 21:14:06,312 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:06] "GET /index HTTP/1.1" 200 -
-2025-11-26 21:14:06,335 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:14:06,337 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 21:14:07,557 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:14:14,369 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:14:23,582 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:23] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 21:14:23,597 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:14:23,609 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:23] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 21:14:23,627 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 21:14:23,628 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:23] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 21:14:24,599 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:14:25,042 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:25] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:14:25,056 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:14:34,828 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:14:35,068 [INFO] root: 🗑 삭제된 사용자: 테스트 (id=3)
-2025-11-26 21:14:35,070 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:35] "[32mGET /admin/delete/3 HTTP/1.1[0m" 302 -
-2025-11-26 21:14:35,074 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:35] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:14:35,095 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:14:37,168 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:37] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:14:37,182 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:14:37,204 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:14:37] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:14:45,059 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:14:55,288 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:15:01,590 [INFO] __main__: Bot polling stopped by user
-2025-11-26 21:15:20,537 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:15:20,537 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:15:21,074 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:15:21,841 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:21,861 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:21,861 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:21,880 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:21,890 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:21,890 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:21,895 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:15:21,897 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:15:24,927 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:24,928 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:24,928 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:24,956 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:24,963 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:24,963 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:24,964 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:24,964 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:24,966 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:15:26,039 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:15:26,039 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:15:26,265 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:15:26,266 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:15:27,964 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:27,964 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:27,966 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:15:42,101 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:42,122 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:42,122 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:42,141 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:42,152 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:42,152 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:47,396 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:47,418 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:47,418 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:47,435 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:47,445 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:47,445 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:47,457 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:15:47,457 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:15:47,457 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:15:48,161 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:48,182 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:48,182 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:48,198 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:48,210 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:48,210 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:48,214 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:15:48,216 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:15:50,481 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:50,481 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:50,481 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:50,489 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:50,523 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:50,523 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:50,523 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:50,523 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:50,525 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:15:51,242 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:51,242 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:51,242 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:51,272 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:51,280 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:51,280 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:51,280 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:51,280 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:51,282 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:15:51,537 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:15:51] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:15:51,581 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:15:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:15:51,593 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:15:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:15:51,602 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:15:51,603 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:15:51,835 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:15:51,835 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:15:52,373 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:15:52,373 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:15:52,602 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:15:52,603 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:15:53,288 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:15:53,301 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\telegram\\ext\\_utils\\networkloop.py', reloading
-2025-11-26 21:15:53,308 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\telegram\\ext\\_updater.py', reloading
-2025-11-26 21:15:53,320 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\telegram\\ext\\_extbot.py', reloading
-2025-11-26 21:15:53,288 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:15:53,445 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:15:53,524 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:53,524 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:53,525 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:15:54,172 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:54,191 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:54,191 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:54,210 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:54,223 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:54,223 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:54,227 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:15:54,228 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:15:54,550 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:15:54,551 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:15:54,776 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:15:54,776 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:15:57,143 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:15:57,143 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:15:57,144 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:15:57] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-26 21:15:57,157 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:15:57] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:15:57,198 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:15:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:15:57,322 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:15:57,322 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:57,322 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:15:57,328 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:15:57,339 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:57,339 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:15:57,339 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:57,339 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:15:57,341 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:15:58,457 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:15:58,457 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:15:58,458 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:15:58,458 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:15:58,565 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:15:58,686 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:15:58,687 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:15:59,388 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:15:59,388 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:00,340 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:00,340 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:00,342 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:16:01,384 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:16:01,385 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:16:01,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:16:01,618 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:16:03,184 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:03,185 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:03,625 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:03,625 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:04,416 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:04,417 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:05,315 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:05,316 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:08,667 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:08,668 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:09,122 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:09,122 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:10,048 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:10,049 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:10,405 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:10,406 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:13,651 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:13,651 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:13,858 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:13,859 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:15,899 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:15,900 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:17,278 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:17,279 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:19,352 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:19,352 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:20,898 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:20,899 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:21,424 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:21,425 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:24,513 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:24,514 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:48,331 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:16:48,351 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:48,351 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:48,370 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:16:48,380 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:48,380 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:48,393 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:16:48,393 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:16:48,393 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:16:49,102 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:16:49,123 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:49,123 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:49,139 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:16:49,150 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:49,150 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:49,154 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:16:49,157 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:16:51,414 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:16:51,414 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:51,414 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:51,422 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:16:51,457 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:51,457 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:51,457 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:51,457 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:51,460 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:16:52,184 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:16:52,184 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:52,184 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:16:52,211 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:16:52,219 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:52,219 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:16:52,219 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:52,219 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:52,221 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:16:52,535 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:16:52,535 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:16:52,766 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:16:52,767 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:16:53,289 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:16:53,289 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:16:53,529 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:16:53,530 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:16:54,226 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:16:54,227 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:16:54,458 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:54,458 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:54,460 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:16:55,220 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:55,220 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:16:55,221 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:16:55,488 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:16:55,488 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:16:55,717 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:16:55,718 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:17:29,064 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:17:29,086 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:29,086 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:29,102 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:17:29,114 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:29,114 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:29,122 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:17:29,124 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:17:29,124 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:17:29,802 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:17:29,820 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:29,820 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:29,840 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:17:29,852 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:29,852 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:29,856 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:17:29,858 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:17:32,148 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:17:32,148 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:32,148 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:32,156 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:17:32,185 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:32,185 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:32,186 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:32,186 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:32,187 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:17:32,883 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:17:32,884 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:32,884 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:17:32,912 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:17:32,920 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:32,920 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:17:32,920 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:32,920 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:32,922 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:17:33,232 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:17:33,233 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:17:33,457 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:17:33,457 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:17:33,996 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:17:33,996 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:17:34,225 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:17:34,225 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:17:34,912 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:17:34,912 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:17:35,186 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:35,186 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:35,188 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:17:35,921 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:35,921 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:17:35,924 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:17:36,207 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:17:36,207 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:17:36,436 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:17:36,438 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:17:36,955 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:17:36,955 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:17:37,188 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:17:37,189 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:17:39,145 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:17:39,146 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:17:40,127 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:17:40,127 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:17:40,401 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:17:40,402 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:17:40,880 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:17:40,880 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:20:28,791 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:20:28,813 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:20:28,813 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:20:28,829 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:20:28,841 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:20:28,841 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:20:28,843 [INFO] __main__: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:20:29,927 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:20:29,927 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:20:30,158 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:20:30,158 [INFO] __main__: Bot polling started successfully
-2025-11-26 21:20:31,844 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:20:31,844 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:20:31,847 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:20:32,863 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:20:32,863 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:20:33,093 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:20:33,093 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:20:33,775 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:20:33,775 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:20:38,032 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:20:38,033 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:20:38,748 [INFO] __main__: Bot polling stopped by user
-2025-11-26 21:23:19,748 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:23:19,768 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:19,768 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:19,784 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:23:19,794 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:19,794 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:19,804 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:23:19,804 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:23:19,804 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:23:20,458 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:23:20,478 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:20,478 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:20,494 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:23:20,504 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:20,504 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:20,508 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:23:20,510 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:23:22,824 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:23:22,824 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:22,824 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:22,831 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:23:22,854 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:22,854 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:22,855 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:22,855 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:22,857 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:23:23,534 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:23:23,534 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:23,534 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:23:23,558 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:23:23,566 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:23,566 [INFO] app: ✅ 텔레그램 봇 폴링 스레드 시작됨
-2025-11-26 21:23:23,566 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:23,566 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:23,568 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:23:23,918 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:23:23,919 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:23:24,154 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:23:24,154 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:23:24,626 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:23:24,627 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:23:24,857 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:23:24,857 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:23:25,538 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:25,538 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:25,855 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:25,855 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:25,857 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:23:26,567 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:26,567 [INFO] app: 🤖 텔레그램 봇 폴링 서비스 시작 중...
-2025-11-26 21:23:26,568 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:23:26,872 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:23:26,872 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:23:27,102 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:23:27,102 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:23:27,577 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:23:27,577 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:23:27,806 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:23:27,806 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:23:29,774 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:29,774 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:30,794 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:30,794 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:31,013 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:31,013 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:31,497 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:31,498 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:32,535 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:23:32] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:23:32,584 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:23:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:23:32,625 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:23:32] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:23:35,260 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:35,260 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:35,534 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:35,535 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:35,664 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:23:35] "GET /register HTTP/1.1" 200 -
-2025-11-26 21:23:35,680 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:23:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:23:35,730 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:35,731 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:36,986 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:36,987 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:40,272 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:40,273 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:41,222 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:41,223 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:41,721 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:41,721 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:42,756 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:42,756 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:46,705 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:46,706 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:48,248 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:48,248 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:48,340 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:48,340 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:50,308 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:50,308 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:50,997 [INFO] app: REGISTER: form errors={'username': ['이름은 한글로만 2~20자 입력 가능합니다.']}
-2025-11-26 21:23:50,997 [INFO] app: REGISTER: form errors={'username': ['이름은 한글로만 2~20자 입력 가능합니다.']}
-2025-11-26 21:23:50,998 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:23:50] "POST /register HTTP/1.1" 200 -
-2025-11-26 21:23:51,014 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:23:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:23:54,873 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:54,874 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:54,965 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:54,965 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:23:56,083 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:23:56,083 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:00,625 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:00,626 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:03,737 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:03,737 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:04,839 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:04,839 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:08,926 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:08,926 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:12,033 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:12,033 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:15,670 [INFO] app: REGISTER: form errors={'username': ['이름은 한글로만 2~20자 입력 가능합니다.']}
-2025-11-26 21:24:15,670 [INFO] app: REGISTER: form errors={'username': ['이름은 한글로만 2~20자 입력 가능합니다.']}
-2025-11-26 21:24:15,671 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:15] "POST /register HTTP/1.1" 200 -
-2025-11-26 21:24:15,690 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:24:16,136 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:16,136 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:17,205 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:17,205 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:24,123 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:24,123 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:28,252 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:28,252 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:32,303 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:32,303 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:32,998 [INFO] app: REGISTER: created id=3 email=test@test.com token=MO4CC4T0Rq
-2025-11-26 21:24:32,998 [INFO] app: REGISTER: created id=3 email=test@test.com token=MO4CC4T0Rq
-2025-11-26 21:24:32,998 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:32] "[32mPOST /register HTTP/1.1[0m" 302 -
-2025-11-26 21:24:33,002 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:33] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:24:33,020 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:24:34,252 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:24:36,234 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:36,234 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:41,991 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:24:42,840 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/answerCallbackQuery "HTTP/1.1 200 OK"
-2025-11-26 21:24:42,841 [INFO] telegram_bot_service: Received callback: approve_MO4CC4T0Rqme6qqjMVb7SLYOews9HTUUVeYt9n-1E98
-2025-11-26 21:24:43,255 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/editMessageText "HTTP/1.1 200 OK"
-2025-11-26 21:24:43,255 [INFO] telegram_bot_service: User 테스트 approved
-2025-11-26 21:24:46,025 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:46,025 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:50,101 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:50,101 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:50,272 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:50,272 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:53,762 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:24:53,762 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:24:53,812 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:24:53,812 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:24:53,813 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:24:53,813 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:24:53,814 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:53] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 21:24:53,828 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:53] "GET /index HTTP/1.1" 200 -
-2025-11-26 21:24:53,848 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:24:53,850 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 21:24:54,021 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:54,022 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:54,851 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:54,852 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:24:55,062 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:24:57,686 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:57] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:24:57,699 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:24:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:24:59,516 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:24:59,516 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:01,151 [INFO] root: 🗑 삭제된 사용자: 테스트 (id=3)
-2025-11-26 21:25:01,152 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:01] "[32mGET /admin/delete/3 HTTP/1.1[0m" 302 -
-2025-11-26 21:25:01,156 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:01] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:25:01,175 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:25:02,560 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:02] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:25:02,572 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:25:03,167 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:03] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:25:03,182 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:25:03,204 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:25:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:25:06,519 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:25:16,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:16,619 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:20,881 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:20,882 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:21,201 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:21,201 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:25,852 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:25,853 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:25,951 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:25,951 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:31,362 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:31,362 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:38,359 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:25:48,602 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:25:51,588 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:51,589 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:55,833 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:55,833 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:25:56,630 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:25:56,630 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:01,371 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:01,371 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:02,070 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:02,070 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:07,583 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:07,583 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:14,588 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:26:24,828 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:26:26,520 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:26,521 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:30,761 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:30,761 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:32,063 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:32,063 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:36,810 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:36,810 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:38,283 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:38,283 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:43,780 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:26:43,781 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:26:50,782 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:27:01,022 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:27:01,462 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:01,462 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:05,718 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:05,718 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:07,525 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:07,525 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:12,290 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:12,290 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:14,495 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:14,495 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:19,992 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:19,992 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:26,993 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:27:36,420 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:36,420 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:40,667 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:40,667 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:43,003 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:43,003 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:47,753 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:47,753 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:50,687 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:50,687 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:27:56,171 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:27:56,171 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:03,176 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:28:11,359 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:11,359 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:15,603 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:15,604 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:18,459 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:18,459 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:23,258 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:23,258 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:26,854 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:26,854 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:32,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:32,365 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:39,366 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:28:46,308 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:46,309 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:50,589 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:50,589 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:53,964 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:53,964 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:28:58,718 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:28:58,718 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:03,067 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:03,067 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:08,558 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:08,558 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:15,562 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:29:21,294 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:21,295 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:25,539 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:25,540 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:29,416 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:29,417 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:34,163 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:34,163 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:39,272 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:39,272 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:44,778 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:44,779 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:29:51,784 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:29:56,258 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:29:56,259 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:00,509 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:00,509 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:04,892 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:04,892 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:09,632 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:09,632 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:15,495 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:15,495 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:21,001 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:21,001 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:28,006 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:30:31,239 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:31,239 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:35,503 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:35,503 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:40,355 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:40,355 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:45,109 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:45,109 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:51,524 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:30:51,525 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:30:51,707 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:51,707 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:30:51,876 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:30:52,574 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:30:52,595 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:30:52,595 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:30:52,611 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:30:52,622 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:30:52,622 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:30:52,625 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:30:52,627 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:30:54,678 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:30:54,679 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:30:54,679 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:30:54,714 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:30:54,722 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:30:54,722 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:30:54,723 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:30:55,784 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:30:55,784 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:30:56,010 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:30:56,010 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:30:56,711 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:30:56,711 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:00,338 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:00,339 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:01,935 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:31:01,956 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:31:01,956 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:31:01,972 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:31:01,991 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:31:01,991 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:31:01,992 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:31:02,644 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:31:02,663 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:31:02,663 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:31:02,679 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:31:02,689 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:31:02,689 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:31:02,693 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:31:02,694 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:31:04,572 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:04,572 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:04,719 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:31:04,719 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:31:04,719 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:31:04,746 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:31:04,754 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:31:04,754 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:31:04,756 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:31:05,806 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:31:05,806 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:31:06,032 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:31:06,033 [INFO] telegram_bot_service: Bot polling started successfully
-2025-11-26 21:31:06,194 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:06,194 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:09,712 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:09,713 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:10,352 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:10,353 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:10,950 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:10,950 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:15,199 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:15,199 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:15,858 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:15,858 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:17,596 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:17,596 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:21,215 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:21,215 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:26,514 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:26,514 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:26,712 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:26,712 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:32,276 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:32,276 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:35,906 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:35,907 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:40,415 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:40,415 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:41,815 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:41,815 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:44,206 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:44,206 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:47,576 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:47,577 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:31:57,578 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:31:58,204 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:31:58,205 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:02,431 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:02,432 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:02,680 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:02,680 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:04,433 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:04,433 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:14,437 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:32:14,917 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:14,918 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:19,155 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:19,155 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:22,220 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:22,221 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:26,952 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:26,952 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:28,776 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:28,776 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:34,271 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:34,271 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:41,274 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:32:49,878 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:49,879 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:53,292 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:53,293 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:54,115 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:54,115 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:32:58,035 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:32:58,035 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:04,962 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:04,962 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:10,453 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:10,453 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:17,456 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:33:24,830 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:24,831 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:28,736 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:28,736 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:29,065 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:29,065 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:33,475 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:33,475 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:40,476 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:33:41,155 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:41,155 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:45,394 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:45,395 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:33:52,397 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:33:59,764 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:33:59,764 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:04,005 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:04,006 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:04,196 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:04,196 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:08,924 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:08,924 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:15,928 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:34:16,160 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:16,160 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:26,164 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:34:34,712 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:34,712 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:38,966 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:38,966 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:39,639 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:39,639 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:44,379 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:44,380 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:46,841 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:46,841 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:52,331 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:34:52,332 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:34:59,336 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:35:09,569 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:35:09,795 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:35:09,796 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:35:15,072 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:35:15,073 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:35:19,315 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:35:19,317 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:35:23,036 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:35:23,037 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:35:27,780 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:35:27,781 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:35:34,777 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:35:40,484 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:35:40,484 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:35:44,730 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:35:44,730 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:35:46,533 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:35:46,533 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:35:47,469 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:35:47,579 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:35:48,197 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:35:48,218 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:35:48,218 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:35:48,235 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:35:48,246 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:35:48,246 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:35:48,249 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:35:48,251 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:35:48,284 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:35:48,304 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:35:48,304 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:35:48,319 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:35:48,329 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:35:48,329 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:35:48,333 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:35:48,335 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:35:50,281 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:35:50,281 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:35:50,281 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:35:50,281 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:35:50,371 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:35:50,371 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:35:50,371 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:35:50,371 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:36:03,068 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:36:03,068 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:36:03,570 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:36:03,710 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:36:04,332 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:36:04,352 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:36:04,352 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:36:04,369 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:36:04,378 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:36:04,378 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:36:04,382 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:36:04,384 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:36:04,443 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:36:04,465 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:36:04,465 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:36:04,484 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:36:04,495 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:36:04,495 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 적용)
-2025-11-26 21:36:04,499 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:36:04,501 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:36:06,409 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:36:06,409 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:36:06,410 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:36:06,410 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:36:06,522 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:36:06,522 [INFO] app: 🤖 텔레그램 봇 폴링 시작...
-2025-11-26 21:36:06,522 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:36:06,522 [ERROR] app: 텔레그램 봇 폴링 오류: start_bot_polling() missing 1 required positional argument: 'flask_app'
-2025-11-26 21:36:08,491 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:36:15,430 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:36:15,430 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:36:19,690 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:36:19,690 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:36:26,687 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:36:36,920 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:36:47,149 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:36:50,398 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:36:50,398 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:36:54,649 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:36:54,650 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:37:01,648 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:37:11,878 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:37:19,549 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:37:19,549 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:37:19,550 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:37:19,645 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:37:19,782 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:37:20,436 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:37:20,457 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:20,457 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:20,474 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:37:20,486 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:37:20,486 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:37:20,488 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:37:20,488 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:37:20,492 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:37:20,494 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:37:20,564 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:37:20,584 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:20,584 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:20,602 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:37:20,612 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:37:20,612 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:37:20,614 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:37:20,614 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:37:20,618 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:37:20,620 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:37:21,654 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:37:21,654 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:37:21,773 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:37:21,774 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:37:21,880 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:37:21,881 [INFO] app: Bot polling started successfully
-2025-11-26 21:37:21,881 [INFO] app: Bot polling started successfully
-2025-11-26 21:37:21,881 [ERROR] app: Error in bot polling: 'Updater' object has no attribute 'idle'
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 161, in start_bot_polling
- await application.updater.idle()
- ^^^^^^^^^^^^^^^^^^^^^^^^
-AttributeError: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:21,881 [ERROR] app: Error in bot polling: 'Updater' object has no attribute 'idle'
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 161, in start_bot_polling
- await application.updater.idle()
- ^^^^^^^^^^^^^^^^^^^^^^^^
-AttributeError: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:21,882 [ERROR] telegram_bot_service: Fatal error in bot polling: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:22,000 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:37:22,001 [INFO] app: Bot polling started successfully
-2025-11-26 21:37:22,001 [INFO] app: Bot polling started successfully
-2025-11-26 21:37:22,001 [ERROR] app: Error in bot polling: 'Updater' object has no attribute 'idle'
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 161, in start_bot_polling
- await application.updater.idle()
- ^^^^^^^^^^^^^^^^^^^^^^^^
-AttributeError: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:22,001 [ERROR] app: Error in bot polling: 'Updater' object has no attribute 'idle'
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 161, in start_bot_polling
- await application.updater.idle()
- ^^^^^^^^^^^^^^^^^^^^^^^^
-AttributeError: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:22,003 [ERROR] telegram_bot_service: Fatal error in bot polling: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:22,108 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:37:25,343 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:37:25,344 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:37:27,204 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:37:27,224 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:27,224 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:27,240 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:37:27,260 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:37:27,260 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:37:27,261 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:37:27,960 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:37:27,978 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:27,978 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:37:27,993 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:37:28,004 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:37:28,004 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:37:28,005 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:37:28,005 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:37:28,010 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:37:28,012 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:37:29,113 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-26 21:37:29,113 [INFO] telegram.ext.Application: Application started
-2025-11-26 21:37:29,342 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-26 21:37:29,342 [INFO] app: Bot polling started successfully
-2025-11-26 21:37:29,342 [INFO] app: Bot polling started successfully
-2025-11-26 21:37:29,343 [ERROR] app: Error in bot polling: 'Updater' object has no attribute 'idle'
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 161, in start_bot_polling
- await application.updater.idle()
- ^^^^^^^^^^^^^^^^^^^^^^^^
-AttributeError: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:29,343 [ERROR] app: Error in bot polling: 'Updater' object has no attribute 'idle'
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 161, in start_bot_polling
- await application.updater.idle()
- ^^^^^^^^^^^^^^^^^^^^^^^^
-AttributeError: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:29,346 [ERROR] telegram_bot_service: Fatal error in bot polling: 'Updater' object has no attribute 'idle'
-2025-11-26 21:37:29,582 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:37:29,582 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:37:36,593 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:37:46,824 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:37:50,245 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:50] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:37:50,291 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:37:50,360 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:37:50,996 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:50] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:37:51,013 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:37:51,034 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:37:55,049 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:55] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:37:55,063 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:37:56,062 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:37:56,062 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:37:56,064 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:56] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-26 21:37:56,069 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:56] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:37:56,084 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:37:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:37:57,053 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:37:57,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:38:00,281 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:38:00,282 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:38:04,526 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:38:04,527 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:38:06,100 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:06] "GET /register HTTP/1.1" 200 -
-2025-11-26 21:38:06,114 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:38:11,526 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:38:21,755 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:38:23,944 [INFO] app: REGISTER: created id=3 email=test@test.com token=1rKvuJBzgg
-2025-11-26 21:38:23,944 [INFO] app: REGISTER: created id=3 email=test@test.com token=1rKvuJBzgg
-2025-11-26 21:38:23,945 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:23] "[32mPOST /register HTTP/1.1[0m" 302 -
-2025-11-26 21:38:23,949 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:23] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:38:23,967 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:38:25,199 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:38:27,165 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:38:28,028 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/answerCallbackQuery "HTTP/1.1 200 OK"
-2025-11-26 21:38:28,028 [INFO] telegram_bot_service: Received callback: approve_1rKvuJBzggmYvK4e-RV7swBXdbQZ2pfX-UrUmN191Vo
-2025-11-26 21:38:28,445 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/editMessageText "HTTP/1.1 200 OK"
-2025-11-26 21:38:28,445 [INFO] telegram_bot_service: User 테스트 approved
-2025-11-26 21:38:35,238 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:38:35,238 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:38:39,476 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:38:39,476 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:38:44,341 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:38:44,341 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:38:44,393 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:38:44,393 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:38:44,394 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:38:44,394 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:38:44,395 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:44] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 21:38:44,417 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:44] "GET /index HTTP/1.1" 200 -
-2025-11-26 21:38:44,439 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:38:44,441 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:44] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 21:38:45,645 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:38:46,475 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:38:46,872 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:46] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:38:46,886 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:38:51,095 [INFO] root: 🗑 삭제된 사용자: 테스트 (id=3)
-2025-11-26 21:38:51,096 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:51] "[32mGET /admin/delete/3 HTTP/1.1[0m" 302 -
-2025-11-26 21:38:51,100 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:51] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:38:51,118 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:38:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:38:56,705 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:39:06,935 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:39:10,172 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:39:10,172 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:39:14,406 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:39:14,406 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:39:21,404 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:39:31,637 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:39:41,868 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:39:45,101 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:39:45,102 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:39:49,357 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:39:49,358 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:39:56,355 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:40:06,586 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:40:16,816 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:40:20,062 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:40:20,062 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:40:24,299 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:40:24,300 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:40:27,133 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:40:27,133 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:40:27,134 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:40:27,134 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:40:27,134 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:40:27,134 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\telegram_bot_service.py', reloading
-2025-11-26 21:40:27,757 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:40:27,921 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:40:28,185 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:40:28,572 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:28,607 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:28,607 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:28,632 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:28,648 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:28,648 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:28,650 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:28,650 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:28,655 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:40:28,657 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:40:28,731 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:28,753 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:28,753 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:28,779 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:28,790 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:28,790 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:28,793 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:28,793 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:28,799 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:40:28,804 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:40:29,018 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:29,042 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:29,042 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:29,059 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:29,070 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:29,070 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:29,072 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:29,072 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:29,078 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:40:29,080 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:40:29,186 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\telegram\\ext\\_application.py', reloading
-2025-11-26 21:40:29,186 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\telegram\\ext\\_application.py', reloading
-2025-11-26 21:40:29,195 [INFO] werkzeug: * Detected change in 'C:\\Users\\KIM84\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\asyncio\\proactor_events.py', reloading
-2025-11-26 21:40:29,205 [INFO] werkzeug: * Detected change in 'C:\\Users\\KIM84\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\asyncio\\base_events.py', reloading
-2025-11-26 21:40:29,205 [INFO] werkzeug: * Detected change in 'C:\\Users\\KIM84\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\asyncio\\base_events.py', reloading
-2025-11-26 21:40:29,173 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:29,186 [INFO] werkzeug: * Detected change in 'D:\\Code\\imges_ocr\\venv312\\Lib\\site-packages\\telegram\\ext\\_application.py', reloading
-2025-11-26 21:40:29,173 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:29,205 [INFO] werkzeug: * Detected change in 'C:\\Users\\KIM84\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\asyncio\\proactor_events.py', reloading
-2025-11-26 21:40:29,206 [INFO] werkzeug: * Detected change in 'C:\\Users\\KIM84\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\asyncio\\base_events.py', reloading
-2025-11-26 21:40:29,206 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:40:29,361 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:29,361 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:29,364 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:40:29,543 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:29,543 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:29,546 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:40:29,778 [INFO] werkzeug: * Detected change in 'C:\\Users\\KIM84\\AppData\\Local\\Programs\\Python\\Python312\\Lib\\tracemalloc.py', reloading
-2025-11-26 21:40:29,864 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:40:30,016 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:40:30,298 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:40:30,665 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:30,686 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:30,686 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:30,702 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:30,712 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:30,712 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:30,714 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:30,714 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:30,718 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:40:30,721 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:40:30,801 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:30,820 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:30,820 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:30,836 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:30,847 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:30,847 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:30,848 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:30,848 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:30,853 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:40:30,855 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:40:31,058 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:31,077 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:31,077 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:31,093 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:31,104 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:31,104 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:31,107 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:31,107 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:31,112 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:40:31,114 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:40:31,201 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:31,201 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:31,204 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:40:31,299 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:40:31,386 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:31,386 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:31,388 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:40:31,564 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:31,564 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:31,567 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:40:41,529 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:40:45,643 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:45,663 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:45,663 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:45,680 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:45,703 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:40:45,704 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:40:45,704 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:40:46,393 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:40:46,413 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:46,413 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:40:46,430 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:40:46,440 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:46,440 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:40:46,442 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:46,442 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:40:46,446 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:40:46,449 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:40:46,831 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:46,831 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:40:46,834 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:40:51,759 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:40:54,975 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:40:54,975 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:40:59,224 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:40:59,224 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:41:06,224 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:41:16,454 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:41:26,685 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:41:29,906 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:41:29,906 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:41:34,141 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:41:34,141 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:41:41,140 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:41:51,370 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:42:01,601 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:42:04,856 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:42:04,856 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:42:09,104 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:42:09,105 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:42:16,095 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:42:26,325 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:42:27,565 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:42:27,566 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:42:27,566 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:42:27,567 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:42:27,567 [INFO] werkzeug: * Detected change in 'D:\\Code\\iDRAC_Info\\idrac_info\\app.py', reloading
-2025-11-26 21:42:27,767 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:42:27,898 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:42:28,256 [INFO] werkzeug: * Restarting with watchdog (windowsapi)
-2025-11-26 21:42:28,565 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:42:28,586 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:28,586 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:28,603 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:42:28,615 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:42:28,615 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:42:28,617 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:42:28,617 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:42:28,623 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:42:28,625 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:42:28,687 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:42:28,707 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:28,707 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:28,724 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:42:28,735 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:42:28,735 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:42:28,737 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:42:28,737 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:42:28,741 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:42:28,744 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:42:29,022 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:42:29,043 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:29,043 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:29,059 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:42:29,070 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:42:29,070 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-26 21:42:29,072 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:42:29,072 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-26 21:42:29,076 [WARNING] werkzeug: * Debugger is active!
-2025-11-26 21:42:29,078 [INFO] werkzeug: * Debugger PIN: 778-054-746
-2025-11-26 21:42:29,103 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:42:29,103 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:42:29,105 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:42:29,249 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:42:29,249 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:42:29,251 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:42:29,511 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:42:29,511 [ERROR] app: Error in bot polling: Cannot close a running event loop
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1054, in __run
- loop.run_until_complete(self._bootstrap_initialize(max_retries=bootstrap_retries))
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1079, in __run
- loop.run_until_complete(self.shutdown())
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 663, in run_until_complete
- self._check_running()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\base_events.py", line 622, in _check_running
- raise RuntimeError('This event loop is already running')
-RuntimeError: This event loop is already running
-
-During handling of the above exception, another exception occurred:
-
-Traceback (most recent call last):
- File "D:\Code\iDRAC_Info\idrac_info\telegram_bot_service.py", line 155, in start_bot_polling
- await application.run_polling(drop_pending_updates=True)
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 839, in run_polling
- return self.__run(
- ^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_application.py", line 1084, in __run
- loop.close()
- File "C:\Users\KIM84\AppData\Local\Programs\Python\Python312\Lib\asyncio\proactor_events.py", line 687, in close
- raise RuntimeError("Cannot close a running event loop")
-RuntimeError: Cannot close a running event loop
-2025-11-26 21:42:29,514 [ERROR] telegram_bot_service: Fatal error in bot polling: Cannot close a running event loop
-2025-11-26 21:42:31,597 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:42:31,619 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:31,619 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:42:31,636 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:42:31,656 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:42:31,656 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:42:36,556 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:42:39,803 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:42:39,804 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:42:44,036 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:42:44,037 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:42:51,037 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:43:00,357 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:00] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:43:00,398 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:00,408 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:00] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:43:00,889 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:00] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:43:00,906 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:00,925 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:00] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:43:01,047 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:01] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:43:01,062 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:01,082 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:01] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:43:01,267 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:43:01,775 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:43:01,775 [INFO] app: LOGOUT: user=김강희
-2025-11-26 21:43:01,776 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:01] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-26 21:43:01,780 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:01] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:43:01,793 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:03,065 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:43:06,532 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:06] "GET /register HTTP/1.1" 200 -
-2025-11-26 21:43:06,544 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:11,497 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:43:14,738 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:43:14,738 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:43:18,964 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:43:18,965 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:43:23,285 [INFO] app: REGISTER: created id=3 email=test@test.com token=tKD9Jwq7Fe
-2025-11-26 21:43:23,285 [INFO] app: REGISTER: created id=3 email=test@test.com token=tKD9Jwq7Fe
-2025-11-26 21:43:23,286 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:23] "[32mPOST /register HTTP/1.1[0m" 302 -
-2025-11-26 21:43:23,289 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:23] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:43:23,306 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:24,503 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:43:25,965 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:43:32,021 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:43:32,890 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/answerCallbackQuery "HTTP/1.1 200 OK"
-2025-11-26 21:43:32,890 [INFO] telegram_bot_service: Received callback: approve_tKD9Jwq7FeX4SIYfvJpLpnDYjxcuoHjukLCTLCWPDf0
-2025-11-26 21:43:33,312 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/editMessageText "HTTP/1.1 200 OK"
-2025-11-26 21:43:33,313 [INFO] telegram_bot_service: User 테스트 approved
-2025-11-26 21:43:42,252 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:43:43,565 [INFO] app: LOGIN: form ok email=test@test.com
-2025-11-26 21:43:43,565 [INFO] app: LOGIN: form ok email=test@test.com
-2025-11-26 21:43:43,613 [INFO] app: LOGIN: found id=3 active=True approved=True pass_ok=True
-2025-11-26 21:43:43,613 [INFO] app: LOGIN: found id=3 active=True approved=True pass_ok=True
-2025-11-26 21:43:43,614 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:43:43,614 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:43:43,615 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:43] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 21:43:43,629 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:43] "GET /index HTTP/1.1" 200 -
-2025-11-26 21:43:43,649 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:43,651 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 21:43:44,894 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:43:48,112 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:48] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 21:43:48,126 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:48,135 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:48] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 21:43:48,148 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 21:43:48,149 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:48] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 21:43:49,329 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:49] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 21:43:49,341 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:49,666 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:43:49,666 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:43:49,920 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:49] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 21:43:49,933 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:50,421 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:50] "GET /index HTTP/1.1" 200 -
-2025-11-26 21:43:50,434 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:50,437 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 21:43:51,222 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:51] "GET /xml_management HTTP/1.1" 200 -
-2025-11-26 21:43:51,237 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:51,514 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:51] "GET /jobs HTTP/1.1" 200 -
-2025-11-26 21:43:51,529 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:51,536 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:51] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-26 21:43:51,549 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-26 21:43:51,550 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:51] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-26 21:43:52,346 [INFO] app: LOGOUT: user=테스트
-2025-11-26 21:43:52,346 [INFO] app: LOGOUT: user=테스트
-2025-11-26 21:43:52,348 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:52] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-26 21:43:52,350 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:52] "GET /login HTTP/1.1" 200 -
-2025-11-26 21:43:52,363 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:43:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:43:53,562 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:43:53,915 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:43:53,915 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:44:00,913 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:44:03,829 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:44:03,829 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-26 21:44:03,877 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:44:03,877 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-26 21:44:03,878 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:44:03,878 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-26 21:44:03,879 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:03] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-26 21:44:03,884 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:03] "GET /index HTTP/1.1" 200 -
-2025-11-26 21:44:03,903 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:03,904 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:03] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-26 21:44:05,158 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-26 21:44:05,405 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:05] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:44:05,420 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:07,659 [INFO] root: 🗑 삭제된 사용자: 테스트 (id=3)
-2025-11-26 21:44:07,659 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:07] "[32mGET /admin/delete/3 HTTP/1.1[0m" 302 -
-2025-11-26 21:44:07,664 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:07] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:44:07,681 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:11,145 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:44:21,375 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:44:24,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:44:24,618 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:44:28,870 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:44:28,871 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:44:35,864 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:44:39,321 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:44:39,341 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:44:39,341 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:44:39,359 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:44:39,382 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:44:39,383 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-26 21:44:46,094 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:44:56,324 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:44:56,381 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:56] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:44:56,398 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:56,412 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:44:56,956 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:56] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:44:56,972 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:56,993 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:44:57,130 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:57] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:44:57,144 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:57,167 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-26 21:44:57,755 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:57] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:44:57,769 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:58,864 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:58] "GET /admin HTTP/1.1" 200 -
-2025-11-26 21:44:58,880 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:44:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:44:59,583 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:44:59,583 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:45:00,724 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:45:00] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-26 21:45:00,738 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:45:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:45:03,818 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:45:03,819 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:45:10,817 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:45:21,047 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:45:31,277 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:45:34,516 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:45:34,516 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:45:38,767 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:45:38,767 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:45:45,765 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:45:55,996 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:46:02,577 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:46:02] "GET /home/ HTTP/1.1" 200 -
-2025-11-26 21:46:02,593 [INFO] werkzeug: 127.0.0.1 - - [26/Nov/2025 21:46:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-26 21:46:06,225 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:46:09,459 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:46:09,459 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:46:13,676 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:46:13,677 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:46:20,675 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:46:30,906 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:46:41,135 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:46:44,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:46:44,365 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:46:48,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 409 Conflict"
-2025-11-26 21:46:48,618 [ERROR] telegram.ext.Updater: Exception happened while polling for updates.
-Traceback (most recent call last):
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- File "D:\Code\imges_ocr\venv312\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-11-26 21:46:55,615 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-26 21:47:07,685 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-26 21:47:07,705 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:47:07,705 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-26 21:47:07,722 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-26 21:47:07,744 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-26 21:47:07,744 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
diff --git a/data/logs/2025-11-27.log b/data/logs/2025-11-27.log
deleted file mode 100644
index 9b9b966..0000000
--- a/data/logs/2025-11-27.log
+++ /dev/null
@@ -1,557 +0,0 @@
-2025-11-27 18:53:56,188 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 18:53:56,211 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 18:53:56,211 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 18:53:56,236 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 18:53:56,270 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 18:53:56,270 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 18:54:04,239 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:04] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-27 18:54:04,265 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:04] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-27 18:54:04,330 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 18:54:16,632 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 18:54:16,632 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 18:54:16,702 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 18:54:16,702 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 18:54:16,704 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 18:54:16,704 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 18:54:16,704 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:16] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-27 18:54:16,720 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:16] "GET /index HTTP/1.1" 200 -
-2025-11-27 18:54:16,741 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 18:54:16,753 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:16] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 18:54:18,104 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-27 18:54:24,104 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:24] "GET /admin HTTP/1.1" 200 -
-2025-11-27 18:54:24,119 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 18:54:25,237 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:25] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-27 18:54:25,251 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 18:54:37,033 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:37] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 18:54:37,047 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 18:54:38,345 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:38] "GET /admin HTTP/1.1" 200 -
-2025-11-27 18:54:38,357 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 18:54:45,869 [INFO] app: LOGOUT: user=김강희
-2025-11-27 18:54:45,869 [INFO] app: LOGOUT: user=김강희
-2025-11-27 18:54:45,872 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:45] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-27 18:54:45,877 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:45] "GET /login HTTP/1.1" 200 -
-2025-11-27 18:54:45,899 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 18:54:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 18:54:47,218 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-27 19:49:49,532 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 19:49:49,554 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 19:49:49,554 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 19:49:49,571 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 19:49:49,593 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 19:49:49,593 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 19:49:52,485 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:49:52] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-27 19:49:52,496 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:49:52] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-27 19:49:52,544 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:49:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:00,494 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 19:50:00,494 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 19:50:00,549 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 19:50:00,549 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 19:50:00,550 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 19:50:00,550 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 19:50:00,551 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:00] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-27 19:50:00,571 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:00] "GET /index HTTP/1.1" 200 -
-2025-11-27 19:50:00,590 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:00,591 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:00] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 19:50:01,888 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-27 19:50:03,009 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:03] "GET /admin HTTP/1.1" 200 -
-2025-11-27 19:50:03,022 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:04,715 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:04] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-27 19:50:04,727 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:06,249 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "GET /jobs HTTP/1.1" 200 -
-2025-11-27 19:50:06,263 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:06,276 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-27 19:50:06,292 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-27 19:50:06,292 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-27 19:50:06,939 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 19:50:06,952 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:06,956 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 19:50:06,956 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:06] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 19:50:22,779 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:22] "GET /scp/diff?file1=LinePlus_T1.xml&file2=PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-11-27 19:50:22,795 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:22,796 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:22] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:37,550 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:37] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 19:50:37,576 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:37,577 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:37] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:37,578 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:37] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 19:50:46,123 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:46] "GET /edit_xml/LinePlus_T1.xml HTTP/1.1" 200 -
-2025-11-27 19:50:46,138 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:49,706 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:49] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 19:50:49,723 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:49,724 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:49] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 19:50:49,724 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:50:49] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 19:55:01,647 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:55:01] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 19:55:01,665 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:55:01] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 19:55:01,669 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:55:01] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 19:55:01,669 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:55:01] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 19:55:01,718 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:55:01] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 19:59:23,834 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:59:23] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 19:59:23,858 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:59:23] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 19:59:23,859 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:59:23] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 19:59:23,859 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:59:23] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 19:59:23,891 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 19:59:23] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 20:03:11,961 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:03:11] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:03:11,984 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:03:11] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 20:03:11,986 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:03:11] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 20:03:11,987 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:03:11] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 20:03:12,018 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:03:12] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 20:05:25,592 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:05:25] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:05:25,617 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:05:25] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 20:05:25,618 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:05:25] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 20:05:25,618 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:05:25] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 20:05:25,650 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:05:25] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 20:06:41,550 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:06:41] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:06:41,572 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:06:41] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 20:06:41,573 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:06:41] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 20:06:41,574 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:06:41] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 20:06:41,660 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:06:41] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 20:07:01,417 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:01] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:07:01,437 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:01] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 20:07:01,437 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:01] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 20:07:01,438 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:01] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 20:07:01,466 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:01] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 20:07:42,817 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:42] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:07:42,837 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:42] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 20:07:42,838 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:42] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 20:07:42,838 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:42] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 20:07:42,872 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:42] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 20:07:55,087 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:07:55,108 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:07:55,108 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:07:55,128 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:07:55,151 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:07:55,151 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:07:56,391 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:56] "[33mGET /xml_management HTTP/1.1[0m" 404 -
-2025-11-27 20:07:56,422 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:56] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
-2025-11-27 20:07:57,096 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:57] "[33mGET /xml_management HTTP/1.1[0m" 404 -
-2025-11-27 20:07:58,679 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:58] "[33mGET /xml_management HTTP/1.1[0m" 404 -
-2025-11-27 20:07:59,693 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:07:59] "[33mGET /xml_management HTTP/1.1[0m" 404 -
-2025-11-27 20:08:03,545 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:03] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:08:03,594 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:03] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:08:03,608 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:03] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:08:03,631 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:03] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=KPmjd5URLBkm9fZIHKLS HTTP/1.1" 200 -
-2025-11-27 20:08:03,638 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:03] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,565 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:08:05,576 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,580 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,584 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png&s=KPmjd5URLBkm9fZIHKLS HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,591 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,752 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:08:05,765 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,768 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,775 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png&s=KPmjd5URLBkm9fZIHKLS HTTP/1.1[0m" 304 -
-2025-11-27 20:08:05,792 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:05] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-27 20:08:06,661 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:06] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:08:06,674 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:06] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:08:06,678 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:06] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:08:06,685 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:06] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=KPmjd5URLBkm9fZIHKLS HTTP/1.1" 200 -
-2025-11-27 20:08:06,704 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:06] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:08:07,063 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:08:07,074 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:08:07,075 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:08:07,081 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=KPmjd5URLBkm9fZIHKLS HTTP/1.1" 200 -
-2025-11-27 20:08:07,100 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:08:07,213 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:08:07,227 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:08:07,228 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:08:07,246 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=KPmjd5URLBkm9fZIHKLS HTTP/1.1" 200 -
-2025-11-27 20:08:07,255 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:08:07] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:08:37,699 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:08:37,721 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:08:37,721 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:08:37,738 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:08:37,760 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:08:37,760 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:09:08,168 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:09:08,188 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:09:08,188 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:09:08,209 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:09:08,232 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:09:08,232 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:09:10,319 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:10] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:10,362 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:10] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:09:10,365 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:10] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:09:10,415 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:10] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:09:10,421 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:10] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,297 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:11,308 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,311 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,318 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,337 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,859 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:11,870 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,874 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,880 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1[0m" 304 -
-2025-11-27 20:09:11,895 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:11] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-27 20:09:12,026 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:12] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:12,038 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:12] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:09:12,042 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:12] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:09:12,048 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:12] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1[0m" 304 -
-2025-11-27 20:09:12,065 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:12] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-11-27 20:09:13,701 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:13] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:13,713 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:13] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:09:13,713 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:13] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:09:13,720 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:13] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1[0m" 304 -
-2025-11-27 20:09:19,987 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:19] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:20,588 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:20] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:20,605 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:20] "[36mGET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:09:20,607 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:20] "[36mGET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-27 20:09:20,632 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:20] "[36mGET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1[0m" 304 -
-2025-11-27 20:09:33,685 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:09:33,707 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:09:33,707 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:09:33,729 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:09:33,751 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:09:33,751 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:09:35,916 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:35] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:35,929 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:35] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:09:35,932 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:35] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:09:35,941 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:35] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:09:35,960 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:35] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:09:36,395 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:36,406 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:09:36,407 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:09:36,419 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:09:36,435 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:09:36,568 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:36,584 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:09:36,584 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:09:36,592 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:09:36,608 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:09:36,721 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:36,734 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:09:36,736 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:09:36,743 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:09:36,763 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:09:36,863 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:09:36,876 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:09:36,877 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:09:36,882 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:09:36,901 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:36] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:09:52,809 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:52] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-27 20:09:52,820 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:52] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-27 20:09:52,862 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:52] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-27 20:09:52,966 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:52] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-27 20:09:57,841 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 20:09:57,841 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 20:09:57,895 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 20:09:57,895 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 20:09:57,897 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 20:09:57,897 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 20:09:57,897 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:57] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-27 20:09:57,917 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:57] "[35m[1mGET /index HTTP/1.1[0m" 500 -
-2025-11-27 20:09:57,934 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:57] "GET /index?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:09:57,938 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:57] "GET /index?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:09:57,953 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:57] "GET /index?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:09:57,982 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:09:57] "GET /index?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:09:59,216 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-27 20:10:02,357 [INFO] app: LOGIN: already auth → /index
-2025-11-27 20:10:02,357 [INFO] app: LOGIN: already auth → /index
-2025-11-27 20:10:02,359 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:10:02] "[32mGET /login?next=/ HTTP/1.1[0m" 302 -
-2025-11-27 20:10:19,124 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:10:19,143 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:10:19,143 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:10:19,163 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:10:19,184 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:10:19,184 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:10:21,639 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:10:21] "[35m[1mGET / HTTP/1.1[0m" 500 -
-2025-11-27 20:10:21,657 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:10:21] "GET /?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-27 20:10:21,664 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:10:21] "GET /?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-27 20:10:21,670 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:10:21] "GET /?__debugger__=yes&cmd=resource&f=console.png&s=toWbFrLNStmsnxQRxd1N HTTP/1.1" 200 -
-2025-11-27 20:10:21,720 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:10:21] "GET /?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-27 20:11:34,671 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:11:34,689 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:11:34,689 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:11:34,708 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:11:34,731 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:11:34,731 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:11:42,219 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:11:42,238 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:11:42,238 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:11:42,254 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:11:42,278 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:11:42,278 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:11:44,565 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:44] "GET / HTTP/1.1" 200 -
-2025-11-27 20:11:44,635 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:11:44,637 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:44] "GET /static/script.js HTTP/1.1" 200 -
-2025-11-27 20:11:46,595 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:46] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:11:46,611 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:11:46,618 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:46] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-27 20:11:46,619 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:46] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-27 20:11:54,440 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:54] "GET /edit_xml/LinePlus_T1.xml HTTP/1.1" 200 -
-2025-11-27 20:11:54,458 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:11:56,650 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:56] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:11:56,668 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:11:56,671 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:56] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:11:56,672 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:11:56] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:12:12,744 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:12:12] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:12:12,762 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:12:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:12:14,222 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:12:14] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:12:14,239 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:12:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:12:14,244 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:12:14] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:17:16,167 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:16] "GET / HTTP/1.1" 200 -
-2025-11-27 20:17:16,176 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:17:16,187 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:16] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:17:16,646 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:16] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-27 20:17:18,728 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:18] "GET /admin HTTP/1.1" 200 -
-2025-11-27 20:17:18,744 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:17:20,726 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:20] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:17:20,739 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:17:21,701 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:21] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:17:21,714 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:17:21,718 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:17:29,307 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:29] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:17:29,322 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:29] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:17:29,322 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:17:29,884 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:29] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:17:29,897 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:17:29,900 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:29] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:17:29,901 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:17:29] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:20:30,931 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:30] "GET / HTTP/1.1" 200 -
-2025-11-27 20:20:30,941 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:20:30,952 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:30] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:20:33,122 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:33] "GET /admin HTTP/1.1" 200 -
-2025-11-27 20:20:33,138 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:20:34,023 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:34] "GET /jobs HTTP/1.1" 200 -
-2025-11-27 20:20:34,035 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:20:34,063 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:34] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-27 20:20:34,068 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-27 20:20:34,069 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:34] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-27 20:20:35,634 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:35] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:20:35,646 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:20:35,651 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:35] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:20:35,651 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:35] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:20:39,035 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:39] "GET /scp/diff?file1=LinePlus_T1.xml&file2=PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-11-27 20:20:39,051 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:20:39,052 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:39] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:20:52,531 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:52] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:20:52,546 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:20:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:32,928 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:32] "GET /jobs HTTP/1.1" 200 -
-2025-11-27 20:21:32,945 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:32,987 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:32] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-27 20:21:32,993 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-27 20:21:32,993 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:32] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-27 20:21:34,137 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:34] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:21:34,156 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:34,164 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:34] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:34,164 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:34] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:21:34,600 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:34] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:21:34,617 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:35,135 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:35] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:21:35,151 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:35,154 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:35] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:21:35,599 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:35] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:21:35,614 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:35,622 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:35] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:35,622 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:35] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:21:36,236 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:36] "GET /jobs HTTP/1.1" 200 -
-2025-11-27 20:21:36,251 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:36,265 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:36] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-27 20:21:36,279 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-27 20:21:36,279 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:36] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-27 20:21:36,700 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:36] "GET /admin HTTP/1.1" 200 -
-2025-11-27 20:21:36,715 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:38,082 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "GET /jobs HTTP/1.1" 200 -
-2025-11-27 20:21:38,101 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:38,109 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-27 20:21:38,127 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-27 20:21:38,128 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-27 20:21:38,372 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:21:38,388 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:38,395 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:38,395 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:21:38,719 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:21:38,735 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:38,738 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:21:39,219 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:39] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:21:39,237 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:39,902 [INFO] app: LOGOUT: user=김강희
-2025-11-27 20:21:39,902 [INFO] app: LOGOUT: user=김강희
-2025-11-27 20:21:39,904 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:39] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-11-27 20:21:39,910 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:39] "GET /login HTTP/1.1" 200 -
-2025-11-27 20:21:39,926 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:21:41,234 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-27 20:21:42,246 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:42] "GET /register HTTP/1.1" 200 -
-2025-11-27 20:21:42,262 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:21:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:22:04,167 [INFO] app: REGISTER: created id=3 email=rnfjrl@test.com token=jvoddlCPFQ
-2025-11-27 20:22:04,167 [INFO] app: REGISTER: created id=3 email=rnfjrl@test.com token=jvoddlCPFQ
-2025-11-27 20:22:04,168 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:22:04] "[32mPOST /register HTTP/1.1[0m" 302 -
-2025-11-27 20:22:04,172 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:22:04] "GET /login HTTP/1.1" 200 -
-2025-11-27 20:22:04,190 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:22:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:22:05,431 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-27 20:25:48,870 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:25:48,891 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:25:48,891 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:25:48,908 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:25:48,931 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:25:48,931 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:25:53,316 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:25:53] "GET /login HTTP/1.1" 200 -
-2025-11-27 20:25:53,377 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:25:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:25:53,444 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:25:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-27 20:25:53,880 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:25:53] "GET /login HTTP/1.1" 200 -
-2025-11-27 20:25:53,893 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:25:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:25:53,913 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:25:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-27 20:28:38,443 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-27 20:28:38,463 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:28:38,463 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-27 20:28:38,481 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-27 20:28:38,494 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-27 20:28:38,494 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-27 20:28:38,494 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-27 20:28:38,494 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-27 20:28:38,525 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-27 20:28:38,525 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-27 20:28:39,629 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-27 20:28:39,861 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-27 20:28:39,861 [INFO] telegram.ext.Application: Application started
-2025-11-27 20:28:43,484 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:28:43] "GET /login HTTP/1.1" 200 -
-2025-11-27 20:28:43,527 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:28:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:28:43,542 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:28:43] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-27 20:28:50,542 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:28:50,849 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:28:51,707 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/answerCallbackQuery "HTTP/1.1 200 OK"
-2025-11-27 20:28:51,707 [INFO] telegram_bot_service: Received callback: approve_jvoddlCPFQRfhbW_yZUPj3lzoaX9ByxZq6qJcrPtlHU
-2025-11-27 20:28:52,115 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/editMessageText "HTTP/1.1 200 OK"
-2025-11-27 20:28:52,115 [INFO] telegram_bot_service: User 꾸러기 approved
-2025-11-27 20:29:01,076 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:29:11,305 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:29:21,550 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:29:31,778 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:29:42,004 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:29:46,006 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:46] "GET /login HTTP/1.1" 200 -
-2025-11-27 20:29:46,027 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:29:46,051 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-27 20:29:51,337 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 20:29:51,337 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-27 20:29:51,385 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 20:29:51,385 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-27 20:29:51,385 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 20:29:51,385 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-27 20:29:51,387 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:51] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-27 20:29:51,403 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:51] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:29:51,424 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:29:51,426 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:29:52,238 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:29:52,602 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-27 20:29:52,831 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:52] "GET /admin HTTP/1.1" 200 -
-2025-11-27 20:29:52,848 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:29:56,303 [INFO] root: 🗑 삭제된 사용자: 꾸러기 (id=3)
-2025-11-27 20:29:56,304 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:56] "[32mGET /admin/delete/3 HTTP/1.1[0m" 302 -
-2025-11-27 20:29:56,311 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:56] "GET /admin HTTP/1.1" 200 -
-2025-11-27 20:29:56,327 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:29:59,804 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:59] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:29:59,821 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:29:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:30:02,465 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:30:12,699 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:30:22,951 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:30:33,178 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:30:40,127 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:30:40] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:30:40,150 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:30:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:30:40,157 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:30:40] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:30:40,158 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:30:40] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:30:43,407 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:30:53,647 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:31:03,882 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:31:14,109 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:31:24,340 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:31:34,589 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:31:44,816 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:31:55,041 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:32:05,272 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:32:15,514 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:32:25,741 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:32:35,967 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:32:46,197 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:32:56,422 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:32:58,550 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:32:58] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:32:58,570 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:32:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:06,650 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:33:16,876 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:33:27,104 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:33:29,679 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:29] "GET /home/ HTTP/1.1" 200 -
-2025-11-27 20:33:29,699 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:37,329 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:33:47,556 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:33:48,168 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:48] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:33:48,184 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:48,192 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:48] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:48,192 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:48] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:33:49,273 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:49] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:33:49,291 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:49,295 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:33:50,150 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:33:50,167 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:50,172 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:50,172 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:33:50,728 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "GET /jobs HTTP/1.1" 200 -
-2025-11-27 20:33:50,747 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:50,761 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-27 20:33:50,778 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-27 20:33:50,779 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:50] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-27 20:33:51,185 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:51] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:33:51,205 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:51,210 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:51] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:51,211 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:51] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:33:52,127 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:52] "GET /xml_management HTTP/1.1" 200 -
-2025-11-27 20:33:52,144 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:52,148 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:52] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:52,149 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:52] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-27 20:33:52,556 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:52] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:33:52,572 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:52,575 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:33:54,040 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:54] "GET /index HTTP/1.1" 200 -
-2025-11-27 20:33:54,055 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:33:54,059 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:33:54] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-27 20:33:57,792 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:34:05,559 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "[32mGET /idrac HTTP/1.1[0m" 308 -
-2025-11-27 20:34:05,566 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "GET /idrac/ HTTP/1.1" 200 -
-2025-11-27 20:34:05,585 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "GET /static/css/idrac_style.css HTTP/1.1" 200 -
-2025-11-27 20:34:05,588 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "GET /static/js/idrac_main.js HTTP/1.1" 200 -
-2025-11-27 20:34:05,654 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "GET /socket.io/?EIO=4&transport=polling&t=Ph55ufK HTTP/1.1" 200 -
-2025-11-27 20:34:05,661 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "GET /idrac/api/servers HTTP/1.1" 200 -
-2025-11-27 20:34:05,662 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "GET /idrac/api/groups HTTP/1.1" 200 -
-2025-11-27 20:34:05,663 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "POST /socket.io/?EIO=4&transport=polling&t=Ph55ufT&sid=Kd7MSTztfydrG7iVAAAA HTTP/1.1" 200 -
-2025-11-27 20:34:05,665 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
-2025-11-27 20:34:05,666 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:05] "GET /socket.io/?EIO=4&transport=polling&t=Ph55ufT.0&sid=Kd7MSTztfydrG7iVAAAA HTTP/1.1" 200 -
-2025-11-27 20:34:08,020 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:34:18,248 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:34:24,288 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:24] "GET /socket.io/?EIO=4&transport=websocket&sid=Kd7MSTztfydrG7iVAAAA HTTP/1.1" 200 -
-2025-11-27 20:34:26,800 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:26] "GET /jobs HTTP/1.1" 200 -
-2025-11-27 20:34:26,818 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-27 20:34:26,835 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:26] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-27 20:34:26,849 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-27 20:34:26,849 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:26] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-27 20:34:28,478 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-27 20:34:31,570 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:31] "GET /admin HTTP/1.1" 200 -
-2025-11-27 20:34:31,586 [INFO] werkzeug: 127.0.0.1 - - [27/Nov/2025 20:34:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
diff --git a/data/logs/2025-11-28.log b/data/logs/2025-11-28.log
deleted file mode 100644
index 5435f3a..0000000
--- a/data/logs/2025-11-28.log
+++ /dev/null
@@ -1,95 +0,0 @@
-2025-11-28 15:15:26,731 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-28 15:15:26,756 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-28 15:15:26,756 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-28 15:15:26,778 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-28 15:15:26,792 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-28 15:15:26,792 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-28 15:15:26,793 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-28 15:15:26,793 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-28 15:15:26,835 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-28 15:15:26,835 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-28 15:15:27,893 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-28 15:15:28,121 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-28 15:15:28,122 [INFO] telegram.ext.Application: Application started
-2025-11-28 15:15:38,822 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:15:49,057 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:15:59,291 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:16:09,530 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:16:19,765 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:16:30,000 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:16:40,234 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:21:41,955 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-28 15:21:41,978 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-28 15:21:41,978 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-28 15:21:41,997 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-28 15:21:42,011 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-28 15:21:42,011 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-28 15:21:42,012 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-28 15:21:42,012 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-28 15:21:42,028 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-28 15:21:42,028 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-28 15:21:43,126 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-28 15:21:43,358 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-28 15:21:43,360 [INFO] telegram.ext.Application: Application started
-2025-11-28 15:21:49,495 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:21:49] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-28 15:21:49,520 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:21:49] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-28 15:21:49,602 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:21:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-28 15:21:54,039 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:21:58,823 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-28 15:21:58,823 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-28 15:21:58,900 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-28 15:21:58,900 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-28 15:21:58,901 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-28 15:21:58,901 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-28 15:21:58,901 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:21:58] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-28 15:21:58,918 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:21:58] "GET /index HTTP/1.1" 200 -
-2025-11-28 15:21:58,935 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:21:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-28 15:21:58,946 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:21:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-28 15:22:00,150 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-28 15:22:01,767 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:01] "GET /admin HTTP/1.1" 200 -
-2025-11-28 15:22:01,779 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-28 15:22:02,852 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:02] "GET /jobs HTTP/1.1" 200 -
-2025-11-28 15:22:02,865 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-28 15:22:02,893 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:02] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-28 15:22:02,900 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-28 15:22:02,900 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:02] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-28 15:22:04,264 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:22:06,057 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:06] "GET /xml_management HTTP/1.1" 200 -
-2025-11-28 15:22:06,070 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-28 15:22:06,076 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:06] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-28 15:22:06,076 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:06] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-28 15:22:14,492 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:22:24,718 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:22:25,589 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:25] "GET /edit_xml/LinePlus_T1.xml HTTP/1.1" 200 -
-2025-11-28 15:22:25,607 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-28 15:22:29,679 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:29] "GET /xml_management HTTP/1.1" 200 -
-2025-11-28 15:22:29,692 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-28 15:22:29,696 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:29] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-28 15:22:29,696 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 15:22:29] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-28 15:22:34,945 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 15:22:45,172 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-28 18:18:06,930 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-28 18:18:06,953 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-28 18:18:06,953 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-28 18:18:06,972 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-28 18:18:06,985 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-28 18:18:06,985 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-28 18:18:06,985 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-28 18:18:06,985 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-28 18:18:07,024 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-28 18:18:07,024 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-28 18:18:08,082 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-28 18:18:08,314 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-28 18:18:08,315 [INFO] telegram.ext.Application: Application started
-2025-11-28 18:18:11,284 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 18:18:11] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-28 18:18:11,304 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 18:18:11] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-28 18:18:11,334 [INFO] werkzeug: 127.0.0.1 - - [28/Nov/2025 18:18:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
diff --git a/data/logs/2025-11-29.log b/data/logs/2025-11-29.log
deleted file mode 100644
index 60b1487..0000000
--- a/data/logs/2025-11-29.log
+++ /dev/null
@@ -1,756 +0,0 @@
-2025-11-29 08:14:35,726 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-29 08:14:35,756 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 08:14:35,756 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 08:14:35,783 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-29 08:14:35,803 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 08:14:35,803 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 08:14:35,803 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 08:14:35,803 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 08:14:35,856 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-29 08:14:35,856 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-29 08:14:36,951 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-29 08:14:37,184 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-29 08:14:37,185 [INFO] telegram.ext.Application: Application started
-2025-11-29 08:14:38,056 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:38] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-29 08:14:38,088 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:38] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-29 08:14:38,346 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:38] "GET /static/style.css HTTP/1.1" 200 -
-2025-11-29 08:14:38,694 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:38] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-29 08:14:43,883 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 08:14:43,883 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 08:14:43,954 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-29 08:14:43,954 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-29 08:14:43,955 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-29 08:14:43,955 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-29 08:14:43,956 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:43] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-29 08:14:44,191 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:44] "GET /index HTTP/1.1" 200 -
-2025-11-29 08:14:44,517 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 08:14:44,522 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:44] "GET /static/css/index.css HTTP/1.1" 200 -
-2025-11-29 08:14:44,525 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:44] "GET /static/script.js HTTP/1.1" 200 -
-2025-11-29 08:14:44,529 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:44] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-11-29 08:14:45,195 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-29 08:14:47,867 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:14:49,161 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:49] "[32mGET /idrac HTTP/1.1[0m" 308 -
-2025-11-29 08:14:49,475 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:49] "GET /idrac/ HTTP/1.1" 200 -
-2025-11-29 08:14:49,797 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:49] "GET /static/css/idrac_style.css HTTP/1.1" 200 -
-2025-11-29 08:14:49,798 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:49] "GET /static/js/idrac_main.js HTTP/1.1" 200 -
-2025-11-29 08:14:50,054 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:50] "GET /socket.io/?EIO=4&transport=polling&t=PhClt5V HTTP/1.1" 200 -
-2025-11-29 08:14:50,136 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:50] "POST /socket.io/?EIO=4&transport=polling&t=PhClt98&sid=ybpAZIBf9CdxVyJIAAAA HTTP/1.1" 200 -
-2025-11-29 08:14:50,139 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:50] "GET /idrac/api/groups HTTP/1.1" 200 -
-2025-11-29 08:14:50,140 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:50] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
-2025-11-29 08:14:50,142 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:50] "GET /idrac/api/servers HTTP/1.1" 200 -
-2025-11-29 08:14:50,367 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:50] "GET /socket.io/?EIO=4&transport=polling&t=PhClt99&sid=ybpAZIBf9CdxVyJIAAAA HTTP/1.1" 200 -
-2025-11-29 08:14:50,372 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:50] "GET /socket.io/?EIO=4&transport=polling&t=PhCltE3&sid=ybpAZIBf9CdxVyJIAAAA HTTP/1.1" 200 -
-2025-11-29 08:14:55,662 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:14:55] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 08:14:58,093 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:15:06,515 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:15:06] "POST /catalog/sync HTTP/1.1" 200 -
-2025-11-29 08:15:08,327 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:15:13,235 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:15:13] "POST /catalog/sync HTTP/1.1" 200 -
-2025-11-29 08:15:18,557 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:15:20,040 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:15:20] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 08:15:28,783 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:15:28,937 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:15:28] "POST /catalog/sync HTTP/1.1" 200 -
-2025-11-29 08:15:34,670 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:15:34] "POST /catalog/sync HTTP/1.1" 200 -
-2025-11-29 08:15:39,011 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:15:49,239 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:15:59,473 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:16:09,699 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:16:19,927 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:16:30,154 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:16:40,381 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:16:50,615 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:17:00,843 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:17:02,435 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:02] "GET /socket.io/?EIO=4&transport=websocket&sid=ybpAZIBf9CdxVyJIAAAA HTTP/1.1" 200 -
-2025-11-29 08:17:02,757 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:02] "GET /index HTTP/1.1" 200 -
-2025-11-29 08:17:02,776 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 08:17:03,002 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-11-29 08:17:03,082 [INFO] app: LOGIN: already auth → /index
-2025-11-29 08:17:03,082 [INFO] app: LOGIN: already auth → /index
-2025-11-29 08:17:03,082 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "[32mGET /login?next=/ HTTP/1.1[0m" 302 -
-2025-11-29 08:17:03,083 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-11-29 08:17:03,191 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "GET /index HTTP/1.1" 200 -
-2025-11-29 08:17:03,390 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 08:17:03,515 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-11-29 08:17:03,516 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "GET /static/script.js HTTP/1.1" 200 -
-2025-11-29 08:17:03,517 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:17:03] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-11-29 08:17:11,069 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:17:21,296 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:17:31,524 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:17:41,752 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:17:51,985 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:18:02,214 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:18:12,440 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:18:22,665 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:18:32,897 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:18:43,122 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:18:53,349 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:19:03,575 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:19:13,803 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:19:24,030 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:19:34,258 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:19:44,487 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:19:54,717 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:19:58,781 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:58] "[32mGET /idrac HTTP/1.1[0m" 308 -
-2025-11-29 08:19:58,783 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:58] "GET /idrac/ HTTP/1.1" 200 -
-2025-11-29 08:19:59,032 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "[36mGET /static/css/idrac_style.css HTTP/1.1[0m" 304 -
-2025-11-29 08:19:59,107 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "[36mGET /static/js/idrac_main.js HTTP/1.1[0m" 304 -
-2025-11-29 08:19:59,421 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "GET /idrac/api/groups HTTP/1.1" 200 -
-2025-11-29 08:19:59,421 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "GET /socket.io/?EIO=4&transport=polling&t=PhCn2c6 HTTP/1.1" 200 -
-2025-11-29 08:19:59,422 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "GET /idrac/api/servers HTTP/1.1" 200 -
-2025-11-29 08:19:59,683 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "POST /socket.io/?EIO=4&transport=polling&t=PhCn2h1&sid=2pMufQvxsqmN2V1_AAAC HTTP/1.1" 200 -
-2025-11-29 08:19:59,728 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "GET /socket.io/?EIO=4&transport=polling&t=PhCn2h2&sid=2pMufQvxsqmN2V1_AAAC HTTP/1.1" 200 -
-2025-11-29 08:19:59,731 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:19:59] "GET /socket.io/?EIO=4&transport=polling&t=PhCn2lp&sid=2pMufQvxsqmN2V1_AAAC HTTP/1.1" 200 -
-2025-11-29 08:20:00,769 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:20:00] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 08:20:04,945 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:20:15,177 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:20:25,403 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:20:35,632 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:20:45,864 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:20:56,090 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:21:06,318 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:21:16,543 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:21:26,770 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:21:36,999 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:21:47,226 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:21:57,452 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:22:07,684 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:22:17,910 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:22:28,138 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:22:38,367 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:22:48,595 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:22:58,821 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:23:09,047 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:23:19,273 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:23:29,500 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:23:39,735 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:23:49,961 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:24:00,192 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:24:10,417 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:24:20,646 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:24:30,873 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:24:41,103 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:24:51,330 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:25:01,559 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:25:11,790 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:25:22,018 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:25:32,246 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:25:42,473 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:25:52,705 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:26:02,931 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:26:13,187 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:26:23,415 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:26:33,648 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:26:43,874 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:26:54,100 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:27:04,325 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:27:14,551 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:27:24,777 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:27:35,003 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:27:45,231 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:27:55,457 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:28:05,685 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:28:15,911 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:28:26,138 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:28:36,363 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:28:46,594 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:28:56,820 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:29:07,047 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:29:17,276 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:29:27,503 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:29:37,731 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:29:47,957 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:29:58,191 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:30:02,765 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 08:30:02] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 08:30:08,423 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:30:18,651 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:30:28,878 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:30:39,106 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:30:49,332 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:30:59,559 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:31:09,787 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:31:20,014 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:31:30,240 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:31:40,465 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:31:51,174 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:32:01,407 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:32:11,642 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:32:21,877 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:32:32,111 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:32:42,345 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:32:52,577 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:33:02,812 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:33:13,045 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:33:23,280 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:33:33,516 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:33:43,749 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:33:53,983 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:34:04,216 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:34:14,449 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:34:24,682 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:34:34,916 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:34:45,150 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:34:55,385 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:35:05,621 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:35:15,853 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:35:26,087 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:35:36,321 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:35:46,554 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:35:56,788 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:36:07,023 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:36:17,255 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:36:27,488 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:36:37,721 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:36:47,957 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:36:58,191 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:37:08,430 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:37:18,665 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:37:28,899 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:37:39,149 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:37:49,392 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:37:59,628 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:38:09,861 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:38:20,093 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:38:30,329 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:38:40,563 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:38:50,800 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:39:01,033 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:39:11,270 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:39:21,504 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:39:31,738 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:39:41,972 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:39:52,206 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:40:02,440 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:40:12,673 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:40:22,908 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:40:33,144 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:40:43,379 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:40:53,613 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:41:03,847 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:41:14,080 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:41:24,344 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:41:34,578 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:41:44,811 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:41:55,043 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:42:05,277 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:42:15,512 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:42:25,750 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:42:35,985 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:42:46,218 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:42:56,453 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:43:06,688 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:43:16,922 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:43:27,155 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:43:37,387 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:43:47,621 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:43:57,855 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:44:08,089 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:44:18,322 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:44:28,558 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:44:38,791 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:44:49,028 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:44:59,263 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:45:09,502 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:45:19,736 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:45:29,970 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:45:40,205 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:45:50,438 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:46:00,670 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:46:10,903 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:46:21,137 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:46:31,370 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:46:41,623 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:46:51,857 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:47:02,090 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:47:12,331 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:47:22,565 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:47:32,798 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:47:43,033 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:47:53,269 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:48:03,502 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:48:13,738 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:48:23,972 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:48:34,207 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:48:44,441 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:48:55,138 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:49:05,370 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:49:15,600 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:49:25,831 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:49:36,063 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:49:46,293 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:49:56,524 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:50:06,756 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:50:16,990 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:50:27,219 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:50:37,450 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:50:47,679 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:50:57,912 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:51:08,143 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:51:18,374 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:51:28,606 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:51:38,837 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:51:49,067 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:51:59,297 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:52:09,529 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:52:19,759 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:52:29,991 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:52:40,221 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:52:50,451 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:53:00,680 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:53:10,913 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:53:21,144 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:53:31,376 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:53:41,606 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:53:51,836 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:54:02,066 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:54:12,297 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:54:22,528 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:54:32,759 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:54:42,991 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:54:53,222 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:55:03,452 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:55:13,683 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:55:23,914 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:55:34,145 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:55:44,377 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:55:54,607 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:56:04,839 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:56:15,070 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:56:25,301 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:56:35,532 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:56:45,763 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:56:55,995 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:57:06,224 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:57:16,456 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:57:26,708 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:57:36,938 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:57:47,169 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:57:57,400 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:58:07,631 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:58:17,861 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:58:28,093 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:58:38,324 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:58:48,555 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:58:58,785 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:59:09,016 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:59:19,246 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:59:29,478 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:59:39,709 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 08:59:49,939 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:00:00,169 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:00:10,400 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:00:20,630 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:00:30,863 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:00:41,094 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:00:51,324 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:01:01,554 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:01:11,785 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:01:22,016 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:01:32,246 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:01:42,477 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:01:52,708 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:02:02,938 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:02:13,169 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:02:23,400 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:02:33,653 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:02:43,885 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:02:54,115 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:03:04,348 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:03:14,583 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:03:24,813 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:03:35,043 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:03:45,273 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:03:55,505 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:04:05,736 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:04:15,969 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:04:26,200 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:04:36,429 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:04:46,659 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:04:56,899 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:05:07,130 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:05:17,362 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:05:27,593 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:05:37,824 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:05:48,055 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:05:58,746 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:06:08,975 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:06:19,203 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:06:29,433 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:06:39,662 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:06:49,891 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:07:00,120 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:07:10,348 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:07:20,577 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:07:30,807 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:07:41,036 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:07:51,266 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:08:01,495 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:08:11,725 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:08:21,954 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:08:32,184 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:08:42,414 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:08:52,644 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:09:02,873 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:09:13,102 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:09:23,339 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:09:33,567 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:09:43,796 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:09:54,025 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:10:04,255 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:10:14,485 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:10:24,714 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:10:34,948 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:10:45,179 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:10:55,409 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:11:05,638 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:11:15,867 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:11:26,097 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:11:36,327 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:11:46,557 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:11:56,788 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:12:07,017 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:12:17,247 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:12:27,477 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:12:37,706 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:12:47,935 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:12:58,165 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:13:08,394 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:13:18,624 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:13:28,853 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:13:39,082 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:13:49,315 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:13:59,543 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:14:09,772 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:14:20,002 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:14:30,230 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:14:40,460 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:14:50,689 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:15:00,918 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:15:11,147 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:15:21,376 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:15:31,605 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:15:41,834 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:15:52,063 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:16:02,294 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:16:12,523 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:16:22,753 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:16:32,982 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:16:43,212 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:16:53,442 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:17:03,671 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:17:13,901 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:17:24,129 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:17:34,359 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:17:44,587 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:17:54,818 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:18:05,047 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:18:15,276 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:18:25,505 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:18:35,735 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:18:45,964 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:18:56,193 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:19:06,422 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:19:16,652 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:19:26,880 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:19:37,109 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:19:47,339 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:19:57,568 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:20:07,798 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:20:18,028 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 09:20:21,965 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 09:20:21] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 09:20:22,683 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 09:20:22] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 09:20:24,123 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 09:20:24] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 09:20:24,715 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 09:20:24] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 09:20:28,257 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:25:00,388 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-29 11:25:00,411 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 11:25:00,411 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 11:25:00,511 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-29 11:25:00,524 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 11:25:00,525 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 11:25:00,524 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 11:25:00,525 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 11:25:00,608 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-29 11:25:00,609 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-29 11:25:01,945 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-29 11:25:02,176 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-29 11:25:02,178 [INFO] telegram.ext.Application: Application started
-2025-11-29 11:25:05,399 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:05] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-29 11:25:05,453 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:05] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-29 11:25:05,487 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:25:12,748 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:12] "[35m[1mPOST /login HTTP/1.1[0m" 500 -
-2025-11-29 11:25:12,773 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:12] "GET /login?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-29 11:25:12,779 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:12] "GET /login?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-29 11:25:12,803 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:12] "GET /login?__debugger__=yes&cmd=resource&f=console.png&s=xoqKrRi6YNbxcjDr00Te HTTP/1.1" 200 -
-2025-11-29 11:25:12,818 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:12] "GET /login?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-29 11:25:12,859 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:25:23,086 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:25:33,316 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:25:46,857 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-29 11:25:46,875 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 11:25:46,875 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 11:25:46,891 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-29 11:25:46,904 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 11:25:46,904 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 11:25:46,904 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 11:25:46,904 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 11:25:46,917 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-29 11:25:46,917 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-29 11:25:47,784 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:47] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-29 11:25:47,820 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:25:47,834 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:47] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-11-29 11:25:47,981 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-29 11:25:48,215 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-29 11:25:48,217 [INFO] telegram.ext.Application: Application started
-2025-11-29 11:25:55,161 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:25:55,161 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:25:55,164 [WARNING] root: password verify failed: argon2: no backends available -- recommend you install one (e.g. 'pip install argon2_cffi')
-2025-11-29 11:25:55,164 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:25:55,164 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:25:55,165 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:55] "POST /login HTTP/1.1" 200 -
-2025-11-29 11:25:55,178 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:25:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:25:58,922 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:26:00,658 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:00,658 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:00,660 [WARNING] root: password verify failed: argon2: no backends available -- recommend you install one (e.g. 'pip install argon2_cffi')
-2025-11-29 11:26:00,660 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:00,660 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:00,661 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:00] "POST /login HTTP/1.1" 200 -
-2025-11-29 11:26:00,680 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:09,154 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:26:14,556 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:14,556 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:14,557 [WARNING] root: password verify failed: argon2: no backends available -- recommend you install one (e.g. 'pip install argon2_cffi')
-2025-11-29 11:26:14,557 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:14,557 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:14,558 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:14] "POST /login HTTP/1.1" 200 -
-2025-11-29 11:26:14,571 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:14,592 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:14] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-29 11:26:16,303 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:16,303 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:16,305 [WARNING] root: password verify failed: argon2: no backends available -- recommend you install one (e.g. 'pip install argon2_cffi')
-2025-11-29 11:26:16,305 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:16,305 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:16,306 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:16] "POST /login HTTP/1.1" 200 -
-2025-11-29 11:26:16,318 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:16,338 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:16] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-29 11:26:19,385 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:26:26,537 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:26,537 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:26,538 [WARNING] root: password verify failed: argon2: no backends available -- recommend you install one (e.g. 'pip install argon2_cffi')
-2025-11-29 11:26:26,539 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:26,539 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:26,539 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:26] "POST /login HTTP/1.1" 200 -
-2025-11-29 11:26:26,556 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:29,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:26:30,145 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:30,145 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:30,147 [WARNING] root: password verify failed: argon2: no backends available -- recommend you install one (e.g. 'pip install argon2_cffi')
-2025-11-29 11:26:30,147 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:30,147 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:30,148 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:30] "POST /login HTTP/1.1" 200 -
-2025-11-29 11:26:30,163 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:39,849 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:26:46,795 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-29 11:26:46,814 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 11:26:46,814 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 11:26:46,830 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-29 11:26:46,843 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 11:26:46,843 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 11:26:46,843 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 11:26:46,843 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 11:26:46,856 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-29 11:26:46,856 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-29 11:26:47,893 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-29 11:26:48,119 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-29 11:26:48,121 [INFO] telegram.ext.Application: Application started
-2025-11-29 11:26:48,563 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:48,563 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:48,614 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:48,614 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2025-11-29 11:26:48,623 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:48] "POST /login HTTP/1.1" 200 -
-2025-11-29 11:26:48,656 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:48,664 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-29 11:26:52,625 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:52,625 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 11:26:52,672 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-29 11:26:52,672 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-29 11:26:52,673 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-29 11:26:52,673 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-29 11:26:52,674 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:52] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-29 11:26:52,700 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:52] "GET /index HTTP/1.1" 200 -
-2025-11-29 11:26:52,716 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:52,728 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:52] "GET /static/css/index.css HTTP/1.1" 200 -
-2025-11-29 11:26:52,731 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-29 11:26:52,734 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:52] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-11-29 11:26:54,110 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-29 11:26:58,026 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:58] "GET /admin HTTP/1.1" 200 -
-2025-11-29 11:26:58,039 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:26:58,057 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:58] "GET /static/js/admin.js HTTP/1.1" 200 -
-2025-11-29 11:26:58,801 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:26:59,260 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:59] "[35m[1mGET /admin/settings HTTP/1.1[0m" 500 -
-2025-11-29 11:26:59,271 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:59] "GET /admin/settings?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-11-29 11:26:59,274 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:59] "GET /admin/settings?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-11-29 11:26:59,279 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:59] "GET /admin/settings?__debugger__=yes&cmd=resource&f=console.png&s=THSpWanxyHDEaEXGoJp8 HTTP/1.1" 200 -
-2025-11-29 11:26:59,302 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:26:59] "GET /admin/settings?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-11-29 11:27:09,027 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:27:19,254 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:27:29,482 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:27:34,883 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:34] "[35m[1mGET /admin/settings HTTP/1.1[0m" 500 -
-2025-11-29 11:27:34,895 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:34] "[36mGET /admin/settings?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-29 11:27:34,898 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:34] "[36mGET /admin/settings?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-29 11:27:34,904 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:34] "[36mGET /admin/settings?__debugger__=yes&cmd=resource&f=console.png&s=THSpWanxyHDEaEXGoJp8 HTTP/1.1[0m" 304 -
-2025-11-29 11:27:39,464 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "[32mGET /idrac HTTP/1.1[0m" 308 -
-2025-11-29 11:27:39,485 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "GET /idrac/ HTTP/1.1" 200 -
-2025-11-29 11:27:39,505 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "GET /static/css/idrac_style.css HTTP/1.1" 200 -
-2025-11-29 11:27:39,524 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "GET /static/js/idrac_main.js HTTP/1.1" 200 -
-2025-11-29 11:27:39,552 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "GET /socket.io/?EIO=4&transport=polling&t=PhDR_kS HTTP/1.1" 200 -
-2025-11-29 11:27:39,555 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "GET /idrac/api/servers HTTP/1.1" 200 -
-2025-11-29 11:27:39,558 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "GET /idrac/api/groups HTTP/1.1" 200 -
-2025-11-29 11:27:39,559 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "[33mGET /favicon.ico HTTP/1.1[0m" 404 -
-2025-11-29 11:27:39,561 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "POST /socket.io/?EIO=4&transport=polling&t=PhDR_kc&sid=Rrkjr7nmXxZXXV5rAAAA HTTP/1.1" 200 -
-2025-11-29 11:27:39,563 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:39] "GET /socket.io/?EIO=4&transport=polling&t=PhDR_kd&sid=Rrkjr7nmXxZXXV5rAAAA HTTP/1.1" 200 -
-2025-11-29 11:27:39,709 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:27:40,780 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:40] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 11:27:43,165 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:43] "GET /idrac/api/firmware-versions HTTP/1.1" 200 -
-2025-11-29 11:27:47,382 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 11:27:47] "GET /socket.io/?EIO=4&transport=websocket&sid=Rrkjr7nmXxZXXV5rAAAA HTTP/1.1" 200 -
-2025-11-29 11:27:49,936 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 11:28:00,164 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:19:05,980 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-29 16:19:06,006 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 16:19:06,006 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 16:19:06,078 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-29 16:19:06,096 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 16:19:06,096 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 16:19:06,096 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 16:19:06,096 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 16:19:06,145 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-29 16:19:06,146 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-29 16:19:07,200 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-29 16:19:07,434 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-29 16:19:07,436 [INFO] telegram.ext.Application: Application started
-2025-11-29 16:19:12,329 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:12] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-29 16:19:12,343 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:12] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-29 16:19:12,375 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:19:17,479 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 16:19:17,479 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-29 16:19:17,547 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-29 16:19:17,547 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-29 16:19:17,548 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-29 16:19:17,548 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-29 16:19:17,549 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:17] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-29 16:19:17,564 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:17] "GET /index HTTP/1.1" 200 -
-2025-11-29 16:19:17,586 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:19:17,590 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:17] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-11-29 16:19:17,590 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:17] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-11-29 16:19:17,590 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:17] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-29 16:19:18,134 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:19:18,818 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-29 16:19:19,001 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:19] "GET /admin HTTP/1.1" 200 -
-2025-11-29 16:19:19,014 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:19:19,017 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:19] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-11-29 16:19:20,031 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:20] "[35m[1mGET /admin/settings HTTP/1.1[0m" 500 -
-2025-11-29 16:19:20,055 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:20] "[36mGET /admin/settings?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:19:20,070 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:20] "[36mGET /admin/settings?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-11-29 16:19:20,088 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:19:20] "GET /admin/settings?__debugger__=yes&cmd=resource&f=console.png&s=nLGik2o7oqJf9jY3fsog HTTP/1.1" 200 -
-2025-11-29 16:19:28,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:19:38,596 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:19:48,832 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:19:59,063 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:20:09,295 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:20:19,528 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:20:29,759 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:20:39,991 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:23:51,770 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-29 16:23:51,793 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 16:23:51,793 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-29 16:23:51,817 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-29 16:23:51,831 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 16:23:51,831 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-29 16:23:51,831 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 16:23:51,831 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-29 16:23:51,847 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-29 16:23:51,847 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-29 16:23:52,589 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:52] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-29 16:23:52,671 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:52] "GET /static/css/admin_settings.css HTTP/1.1" 200 -
-2025-11-29 16:23:52,673 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:23:52,724 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-11-29 16:23:52,926 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-29 16:23:53,156 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-29 16:23:53,158 [INFO] telegram.ext.Application: Application started
-2025-11-29 16:23:59,415 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-29 16:23:59,418 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:59] "[32mPOST /admin/settings/bot/test/1 HTTP/1.1[0m" 302 -
-2025-11-29 16:23:59,422 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:59] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-29 16:23:59,448 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:23:59,448 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:23:59] "[36mGET /static/css/admin_settings.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:03,847 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:24:14,079 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:24:14,607 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:14] "GET /admin HTTP/1.1" 200 -
-2025-11-29 16:24:14,623 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:14,624 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:14] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-11-29 16:24:15,836 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:15] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-29 16:24:15,852 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:15,855 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:15] "[36mGET /static/css/admin_settings.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:17,060 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "GET /admin HTTP/1.1" 200 -
-2025-11-29 16:24:17,074 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:17,080 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-11-29 16:24:17,684 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "GET /index HTTP/1.1" 200 -
-2025-11-29 16:24:17,703 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:17,705 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:17,708 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-11-29 16:24:17,709 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:17] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-29 16:24:18,247 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:18] "GET /xml_management HTTP/1.1" 200 -
-2025-11-29 16:24:18,262 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:18,266 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:18] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-29 16:24:18,267 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:18] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-29 16:24:20,336 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:20] "GET /edit_xml/LinePlus_T1.xml HTTP/1.1" 200 -
-2025-11-29 16:24:20,365 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:20] "GET /static/css/edit_xml.css HTTP/1.1" 200 -
-2025-11-29 16:24:20,368 [INFO] werkzeug: 127.0.0.1 - - [29/Nov/2025 16:24:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-29 16:24:24,311 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:24:34,542 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:24:44,774 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:24:55,005 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:25:05,234 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:25:15,464 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:25:25,695 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:25:35,928 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:25:46,157 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:25:56,389 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:26:06,619 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:26:16,849 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:26:27,079 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:26:37,310 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:26:47,540 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:26:57,770 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:27:08,002 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:27:18,232 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:27:28,463 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:27:38,693 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:27:48,923 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:27:59,154 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:28:09,384 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:28:19,614 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:28:29,845 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:28:40,076 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:28:50,307 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:29:00,537 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:29:10,768 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:29:20,998 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:29:31,228 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-29 16:29:41,458 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
diff --git a/data/logs/2025-11-30.log b/data/logs/2025-11-30.log
deleted file mode 100644
index ef27a00..0000000
--- a/data/logs/2025-11-30.log
+++ /dev/null
@@ -1,96 +0,0 @@
-2025-11-30 07:56:33,462 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-11-30 07:56:33,483 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-30 07:56:33,483 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-11-30 07:56:33,535 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-11-30 07:56:33,548 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-30 07:56:33,548 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-11-30 07:56:33,549 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-30 07:56:33,549 [INFO] app: Starting polling for bot: admin_bot (ID: 1)
-2025-11-30 07:56:33,595 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.122:5000
-2025-11-30 07:56:33,595 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-11-30 07:56:34,624 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-11-30 07:56:34,851 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-11-30 07:56:34,853 [INFO] telegram.ext.Application: Application started
-2025-11-30 07:56:36,685 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:36] "[32mGET / HTTP/1.1[0m" 302 -
-2025-11-30 07:56:36,714 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:36] "GET /login?next=/ HTTP/1.1" 200 -
-2025-11-30 07:56:36,751 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:56:43,202 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-30 07:56:43,202 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-11-30 07:56:43,274 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-30 07:56:43,274 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-11-30 07:56:43,275 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-30 07:56:43,275 [INFO] app: LOGIN: SUCCESS → redirect
-2025-11-30 07:56:43,276 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:43] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-11-30 07:56:43,301 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:43] "GET /index HTTP/1.1" 200 -
-2025-11-30 07:56:43,321 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:56:43,326 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:43] "GET /static/css/index.css HTTP/1.1" 200 -
-2025-11-30 07:56:43,334 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-30 07:56:43,339 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:56:43] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-11-30 07:56:44,539 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-11-30 07:56:45,533 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:56:55,764 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:57:05,992 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:57:16,220 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:57:20,071 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:20] "GET /admin HTTP/1.1" 200 -
-2025-11-30 07:57:20,087 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:20,091 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:20] "GET /static/js/admin.js HTTP/1.1" 200 -
-2025-11-30 07:57:21,784 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:21] "GET /jobs HTTP/1.1" 200 -
-2025-11-30 07:57:21,802 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:21,812 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:21] "GET /static/css/jobs.css HTTP/1.1" 200 -
-2025-11-30 07:57:21,827 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:21] "GET /static/js/jobs.js HTTP/1.1" 200 -
-2025-11-30 07:57:21,832 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:21] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-30 07:57:21,837 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-30 07:57:21,837 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:21] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-30 07:57:23,860 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:23] "GET /admin HTTP/1.1" 200 -
-2025-11-30 07:57:23,873 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:23,877 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:23] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-11-30 07:57:26,447 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:57:27,008 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:27] "GET /admin/settings HTTP/1.1" 200 -
-2025-11-30 07:57:27,021 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:27,032 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:27] "GET /static/css/admin_settings.css HTTP/1.1" 200 -
-2025-11-30 07:57:35,500 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:35] "GET /jobs HTTP/1.1" 200 -
-2025-11-30 07:57:35,514 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:35,517 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:35] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:35,518 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:35] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-11-30 07:57:35,537 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:35] "GET /jobs/config HTTP/1.1" 200 -
-2025-11-30 07:57:35,542 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-11-30 07:57:35,542 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:35] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-11-30 07:57:36,597 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:36] "GET /xml_management HTTP/1.1" 200 -
-2025-11-30 07:57:36,610 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:36,615 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:36] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-11-30 07:57:36,615 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:36] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-11-30 07:57:36,674 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:57:40,721 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:40] "GET /edit_xml/LinePlus_T1.xml HTTP/1.1" 200 -
-2025-11-30 07:57:40,734 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:40,738 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:40] "GET /static/css/edit_xml.css HTTP/1.1" 200 -
-2025-11-30 07:57:42,310 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:42] "GET /xml_management HTTP/1.1" 200 -
-2025-11-30 07:57:42,322 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:42,326 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:42] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-30 07:57:42,327 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:57:42] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-30 07:57:46,902 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:57:57,128 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:58:07,122 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:07] "GET /scp/diff?file1=R6615.xml&file2=R6615_raid.xml HTTP/1.1" 200 -
-2025-11-30 07:58:07,138 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:58:07,140 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:07] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-30 07:58:07,356 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:58:17,592 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:58:19,128 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "GET /xml_management HTTP/1.1" 200 -
-2025-11-30 07:58:19,142 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:58:19,146 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-11-30 07:58:19,146 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-11-30 07:58:19,647 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "GET /index HTTP/1.1" 200 -
-2025-11-30 07:58:19,661 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:58:19,667 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-11-30 07:58:19,667 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-11-30 07:58:19,668 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:19] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-11-30 07:58:24,733 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:24] "GET /home/ HTTP/1.1" 200 -
-2025-11-30 07:58:24,746 [INFO] werkzeug: 127.0.0.1 - - [30/Nov/2025 07:58:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-11-30 07:58:27,818 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:58:38,046 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:58:48,273 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:58:58,501 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:59:08,734 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-11-30 07:59:18,960 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
diff --git a/data/logs/2025-12-18.log b/data/logs/2025-12-18.log
deleted file mode 100644
index 97a465c..0000000
--- a/data/logs/2025-12-18.log
+++ /dev/null
@@ -1,3824 +0,0 @@
-2025-12-18 13:01:00,619 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 13:01:00,637 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:01:00,637 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:01:00,773 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 13:01:00,786 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:01:00,787 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 13:01:00,786 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:01:00,899 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 13:01:00,899 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 13:01:01,819 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 13:01:02,044 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 13:01:02,046 [INFO] telegram.ext.Application: Application started
-2025-12-18 13:01:06,434 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:06] "[32mGET / HTTP/1.1[0m" 302 -
-2025-12-18 13:01:06,473 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:06] "GET /login?next=/ HTTP/1.1" 200 -
-2025-12-18 13:01:06,515 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:06] "GET /static/style.css HTTP/1.1" 200 -
-2025-12-18 13:01:06,576 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:06] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-12-18 13:01:12,724 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:01:15,906 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 13:01:15,906 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 13:01:15,946 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 13:01:15,946 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 13:01:15,947 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 13:01:15,947 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 13:01:15,948 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:15] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 13:01:15,983 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:15] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:01:16,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:16] "GET /static/css/index.css HTTP/1.1" 200 -
-2025-12-18 13:01:16,002 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:01:16,011 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:16] "GET /static/script.js HTTP/1.1" 200 -
-2025-12-18 13:01:16,014 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:01:16] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-12-18 13:01:17,210 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 13:01:22,951 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:01:33,178 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:01:43,405 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:01:53,635 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:02:03,864 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:02:14,091 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:05:51,960 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 13:05:51,977 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:05:51,977 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:05:51,992 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 13:05:52,003 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:05:52,003 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 13:05:52,003 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:05:52,019 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 13:05:52,019 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 13:05:53,021 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 13:05:53,248 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 13:05:53,250 [INFO] telegram.ext.Application: Application started
-2025-12-18 13:05:54,434 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:05:54] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:05:54,527 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:05:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:05:54,531 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:05:54] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:05:54,532 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:05:54] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:05:54,534 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:05:54] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:05:54,556 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:05:54] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:06:03,928 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:06:14,154 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:06:24,380 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:06:34,607 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:06:44,834 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:06:55,060 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:07:05,286 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:07:15,512 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:07:25,738 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:07:35,964 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:07:46,190 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:07:53,008 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:07:53,032 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:07:53,035 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:07:53,036 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:07:53,036 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:07:53,543 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:07:53,562 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-12-18 13:07:53,563 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:07:53,563 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:53] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-12-18 13:07:56,416 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:07:57,965 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:57] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 13:07:57,979 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:07:57,980 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:57] "GET /static/css/jobs.css HTTP/1.1" 200 -
-2025-12-18 13:07:57,981 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:57] "GET /static/js/jobs.js HTTP/1.1" 200 -
-2025-12-18 13:07:57,993 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:57] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 13:07:58,008 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 13:07:58,009 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:58] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 13:07:59,990 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:07:59] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:08:00,005 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:08:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:08:00,006 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:08:00] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:08:00,009 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:08:00] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:08:00,009 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:08:00] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:11:40,175 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 13:11:40,192 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:11:40,192 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:11:40,208 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 13:11:40,220 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:11:40,220 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:11:40,220 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 13:11:40,237 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 13:11:40,237 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 13:11:40,304 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:11:40] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:11:40,357 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:11:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:11:40,357 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:11:40] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:11:40,537 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:11:40] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:11:40,550 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:11:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:11:41,258 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 13:11:41,485 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 13:11:41,487 [INFO] telegram.ext.Application: Application started
-2025-12-18 13:11:52,158 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:12:02,383 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:12:12,608 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:12:22,832 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:12:33,055 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:12:43,279 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:12:53,503 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:13:03,727 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:13:13,951 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:13:24,174 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:13:34,398 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:13:44,622 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:13:54,846 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:13:55,685 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:13:55] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:13:55,703 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:13:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:13:55,708 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:13:55] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:13:55,709 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:13:55] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:14:02,747 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:14:02] "[32mPOST /upload_xml HTTP/1.1[0m" 302 -
-2025-12-18 13:14:02,751 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:14:02] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:14:02,775 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:14:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:14:02,775 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:14:02] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:14:02,776 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:14:02] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:14:05,070 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:14:15,297 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:14:25,522 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:14:35,746 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:14:45,970 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:14:56,194 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:15:06,418 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:15:16,643 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:15:26,866 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:15:37,090 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:15:42,305 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:15:42] "GET /edit_xml/LinePlus_T1.xml HTTP/1.1" 200 -
-2025-12-18 13:15:42,325 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:15:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:15:42,328 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:15:42] "GET /static/css/edit_xml.css HTTP/1.1" 200 -
-2025-12-18 13:15:43,750 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:15:43] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:15:43,767 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:15:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:15:43,768 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:15:43] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:15:43,769 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:15:43] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:15:47,315 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:15:57,538 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:16:07,763 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:16:17,987 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:16:28,211 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:16:38,435 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:16:48,658 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:16:58,882 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:17:09,106 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:17:19,329 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:17:29,553 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:17:39,776 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:17:48,823 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:17:48] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:17:48,841 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:17:48] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:17:48,842 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:17:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:17:48,842 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:17:48] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:17:48,882 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:17:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:17:50,000 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:18:00,223 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:18:10,447 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:18:20,671 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:18:30,894 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:18:41,119 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:18:51,343 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:18:56,059 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:18:56] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:18:56,081 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:18:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:18:56,084 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:18:56] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:18:56,085 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:18:56] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:18:56,086 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:18:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:19:01,567 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:19:11,791 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:19:22,015 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:19:29,940 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:29] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:19:29,957 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:29,961 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:29] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:19:29,961 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:29] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:29,962 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:29] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:19:29,997 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:29] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:19:30,684 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:30] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:19:30,701 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:30,702 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:30] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:30,703 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:30] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:19:31,323 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:31] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:19:31,336 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:31,340 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:31] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:19:31,341 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:31] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:31,376 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:19:32,239 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:19:42,463 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:19:52,687 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:19:54,888 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:54] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:19:54,902 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:54,905 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:54] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:19:54,906 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:54] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:19:54,934 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:19:54] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:20:02,910 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:20:03,908 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:20:03] "GET /edit_xml/R6625_RAID.xml HTTP/1.1" 200 -
-2025-12-18 13:20:03,926 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:20:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:20:03,929 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:20:03] "[36mGET /static/css/edit_xml.css HTTP/1.1[0m" 304 -
-2025-12-18 13:20:13,134 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:20:14,807 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:20:14] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:20:14,823 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:20:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:20:14,828 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:20:14] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:20:14,828 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:20:14] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:20:23,358 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:20:33,584 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:20:43,808 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:20:54,032 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:21:04,256 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:21:11,128 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:11] "GET /edit_xml/R650_TY1.xml HTTP/1.1" 200 -
-2025-12-18 13:21:11,146 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:21:14,480 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:21:24,704 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:21:30,544 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:30] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:21:30,560 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:21:30,562 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:30] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:21:30,563 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:30] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:21:31,368 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:31] "GET /edit_xml/T6_R760_RAID_A.xml HTTP/1.1" 200 -
-2025-12-18 13:21:31,380 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:21:33,731 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:33] "GET /edit_xml/R6625_RAID.xml HTTP/1.1" 200 -
-2025-12-18 13:21:33,746 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:21:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:21:34,928 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:21:45,153 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:21:55,377 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:22:05,601 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:22:15,825 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:22:26,052 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:22:36,276 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:22:46,500 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:22:56,049 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:22:56] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:22:56,066 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:22:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:22:56,068 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:22:56] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:22:56,069 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:22:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:22:56,070 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:22:56] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:22:56,724 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:23:06,947 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:23:17,171 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:23:27,395 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:23:37,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:23:47,842 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:23:58,065 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:24:08,290 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:24:18,515 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:24:28,739 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:24:38,962 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:24:49,186 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:24:59,410 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:25:09,634 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:25:19,858 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:25:30,083 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:25:40,309 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:25:48,147 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:48] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:25:48,166 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:25:48,168 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:48] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:25:48,168 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:48] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:25:48,169 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:25:48,199 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:25:49,234 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:49] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:25:49,246 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:25:49,249 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:49] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:25:49,249 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:49] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:25:50,181 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:50] "GET /edit_xml/R650_TY1.xml HTTP/1.1" 200 -
-2025-12-18 13:25:50,196 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:25:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:25:50,532 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:26:00,757 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:26:10,980 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:26:21,204 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:26:31,429 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:26:41,653 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:26:51,877 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:27:02,100 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:27:12,325 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:27:22,548 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:27:32,772 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:27:42,996 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:27:53,221 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:27:59,684 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:27:59] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 13:27:59,704 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:27:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:27:59,705 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:27:59] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-18 13:27:59,706 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:27:59] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-18 13:27:59,735 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:27:59] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 13:27:59,742 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 13:27:59,742 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:27:59] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 13:28:03,444 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:28:13,667 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:28:23,891 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:28:34,114 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:28:44,338 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:28:55,019 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:29:05,246 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:29:15,471 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:29:25,697 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:29:35,924 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:29:46,152 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:29:56,379 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:30:06,607 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:30:09,619 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:09] "GET /admin HTTP/1.1" 200 -
-2025-12-18 13:30:09,639 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:09] "GET /static/js/admin.js HTTP/1.1" 200 -
-2025-12-18 13:30:09,640 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:30:16,833 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:30:21,870 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:30:21,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:30:21,892 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:30:21,893 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:30:21,894 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:30:27,060 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:30:29,000 [INFO] app: LOGOUT: user=김강희
-2025-12-18 13:30:29,000 [INFO] app: LOGOUT: user=김강희
-2025-12-18 13:30:29,002 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:29] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-12-18 13:30:29,007 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:29] "GET /login HTTP/1.1" 200 -
-2025-12-18 13:30:29,022 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:30:30,242 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 13:30:37,288 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:30:47,517 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:30:53,934 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 13:30:53,934 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 13:30:53,973 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 13:30:53,973 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 13:30:53,974 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 13:30:53,974 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 13:30:53,975 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:53] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 13:30:53,980 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:30:54,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:30:54,003 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:54] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:30:54,003 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:54] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:30:54,004 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:30:54] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:30:55,186 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 13:30:57,744 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:31:07,970 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:31:18,198 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:31:28,428 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:31:38,654 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:31:48,880 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:31:59,107 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:32:09,332 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:32:19,559 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:32:29,793 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:32:40,018 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:32:50,245 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:33:00,471 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:33:10,697 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:33:20,923 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:33:31,148 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:33:41,374 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:33:51,601 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:34:01,835 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:34:12,060 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:34:22,287 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:34:32,514 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:34:42,739 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:34:52,968 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:35:03,195 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:35:13,422 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:35:23,649 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:35:33,876 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:35:44,101 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:35:48,709 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:48] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 13:35:48,746 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:35:48,748 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:48] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-18 13:35:48,749 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:48] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-18 13:35:48,775 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:48] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 13:35:48,781 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 13:35:48,781 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:48] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 13:35:49,481 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:49] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:35:49,500 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:35:49,501 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:49] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:35:49,502 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:49] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:35:51,057 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:51] "GET /edit_xml/PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-12-18 13:35:51,072 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:35:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:35:54,328 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:36:00,949 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:36:00] "GET /scp/diff?file1=R650_TY1.xml&file2=R6615.xml HTTP/1.1" 200 -
-2025-12-18 13:36:00,963 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:36:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:36:00,964 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:36:00] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:36:04,555 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:36:14,781 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:36:25,008 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:36:35,235 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:36:45,461 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:36:55,686 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:37:05,913 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:37:16,139 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:37:21,555 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:21] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:37:21,571 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:37:21,572 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:21] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:37:21,573 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:21] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:37:21,599 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:37:24,147 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:24] "GET /scp/diff?file1=R650_TY1.xml&file2=R6615.xml HTTP/1.1" 200 -
-2025-12-18 13:37:24,161 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:37:26,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:37:36,593 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:37:46,821 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:37:51,370 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:51] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:37:51,382 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:37:51,387 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:51] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:37:51,387 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:51] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:37:51,414 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:37:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:37:57,047 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:38:07,272 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:38:17,499 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:38:27,725 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:38:37,951 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:38:48,177 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:38:58,406 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:39:08,633 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:39:18,859 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:39:29,085 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:39:39,312 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:39:40,196 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:40] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:39:40,217 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:39:40,218 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:40] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:39:40,219 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:40] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:39:40,251 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:39:43,678 [ERROR] backend.routes.scp_routes: Diff error: Object of type Undefined is not JSON serializable
-2025-12-18 13:39:43,679 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:43] "[32mGET /scp/diff?file1=R650_TY1.xml&file2=R6615.xml HTTP/1.1[0m" 302 -
-2025-12-18 13:39:43,683 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:43] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:39:43,707 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:39:43,707 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:43] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:39:43,708 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:43] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:39:49,543 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:39:52,523 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:52] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:39:52,535 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:39:52,539 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:52] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:39:52,540 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:52] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:39:52,565 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:39:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:39:59,782 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:40:10,010 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:40:20,238 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:40:30,467 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:40:40,695 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:40:50,921 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:41:01,147 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:41:08,572 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:08] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:41:08,589 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:41:08,594 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:08] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:41:08,594 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:08] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:41:08,629 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:08] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:41:10,717 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:10] "GET /scp/diff?file1=R650_TY1.xml&file2=R6615.xml HTTP/1.1" 200 -
-2025-12-18 13:41:10,733 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:41:11,376 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:41:21,602 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:41:31,829 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:41:33,789 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:33] "GET /edit_xml/R6615.xml HTTP/1.1" 200 -
-2025-12-18 13:41:33,805 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:41:42,054 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:41:47,058 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:47] "GET /scp/diff?file1=R6615.xml&file2=R6625_RAID.xml HTTP/1.1" 200 -
-2025-12-18 13:41:47,072 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:41:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:41:52,280 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:42:02,505 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:42:12,731 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:42:22,956 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:42:33,183 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:42:43,411 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:42:53,639 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:43:03,865 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:43:14,095 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:43:24,322 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:43:34,548 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:43:40,892 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:43:40] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:43:40,910 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:43:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:43:40,913 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:43:40] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:43:40,928 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:43:40] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:43:40,957 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:43:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:43:43,553 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:43:43] "GET /scp/diff?file1=R650_TY1.xml&file2=R6615.xml HTTP/1.1" 200 -
-2025-12-18 13:43:43,575 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:43:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:43:44,775 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:43:55,001 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:44:05,230 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:44:08,973 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:44:08] "GET /scp/diff?file1=T6_R760_XML_P.xml&file2=T6_R760_XML_S.xml HTTP/1.1" 200 -
-2025-12-18 13:44:08,986 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:44:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:44:15,457 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:44:25,684 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:44:35,909 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:44:46,135 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:44:56,361 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:45:06,588 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:45:16,816 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:45:27,041 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:45:37,268 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:45:47,494 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:45:58,181 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:46:08,414 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:46:18,640 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:46:28,866 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:46:39,098 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:46:49,325 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:46:54,776 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:54] "GET /scp/diff?file1=T6_R760_XML_P.xml&file2=T6_R760_XML_S.xml HTTP/1.1" 200 -
-2025-12-18 13:46:54,794 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:46:54,838 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:54] "[33mGET /scp/content/T6_R760_XML_P.xml HTTP/1.1[0m" 404 -
-2025-12-18 13:46:54,838 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:54] "[33mGET /scp/content/T6_R760_XML_S.xml HTTP/1.1[0m" 404 -
-2025-12-18 13:46:54,844 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:54] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:46:55,474 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:55] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:46:55,488 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:46:55,489 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:55] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:46:55,490 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:46:55] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:46:59,552 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:47:08,069 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:47:08] "GET /scp/diff?file1=T8A_R6625_P.xml&file2=T8A_R6625_P_NoRaid.xml HTTP/1.1" 200 -
-2025-12-18 13:47:08,084 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:47:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:47:08,135 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:47:08] "[33mGET /scp/content/T8A_R6625_P_NoRaid.xml HTTP/1.1[0m" 404 -
-2025-12-18 13:47:08,135 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:47:08] "[33mGET /scp/content/T8A_R6625_P.xml HTTP/1.1[0m" 404 -
-2025-12-18 13:47:09,778 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:47:20,005 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:47:25,707 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:47:25] "GET /edit_xml/T8A_R6625_P.xml HTTP/1.1" 200 -
-2025-12-18 13:47:25,721 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:47:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:47:30,231 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:47:40,465 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:47:50,692 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:48:00,921 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:48:11,154 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:48:21,380 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:48:31,607 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:48:41,833 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:48:52,060 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:48:53,403 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:53] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:48:53,419 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:48:53,420 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:53] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:48:53,421 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:53] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:48:53,451 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:48:54,396 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:54] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:48:54,409 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:48:54,413 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:54] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:48:54,413 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:54] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:48:54,448 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:54] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:48:57,256 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:57] "GET /scp/diff?file1=T8A_R6625_P.xml&file2=T8A_R6625_P_NoRaid.xml HTTP/1.1" 200 -
-2025-12-18 13:48:57,271 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:48:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:49:02,287 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:49:12,514 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:49:22,742 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:49:44,641 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 13:49:44,660 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:49:44,660 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 13:49:44,677 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 13:49:44,689 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:49:44,689 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 13:49:44,689 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 13:49:44,706 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 13:49:44,706 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 13:49:45,410 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:49:45] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:49:45,484 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:49:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:49:45,487 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:49:45] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:49:45,488 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:49:45] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:49:45,574 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:49:45] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:49:45,709 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 13:49:45,932 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 13:49:45,934 [INFO] telegram.ext.Application: Application started
-2025-12-18 13:49:48,170 [INFO] backend.routes.scp_routes: Reading file1: D:\Code\iDRAC_Info\idrac_info\data\xml\LinePlus_T1.xml
-2025-12-18 13:49:48,171 [INFO] backend.routes.scp_routes: Reading file2: D:\Code\iDRAC_Info\idrac_info\data\xml\PO-20250826-0158 _가산3_XE9680_384EA.xml
-2025-12-18 13:49:48,171 [INFO] backend.routes.scp_routes: Content1 length: 244874, Content2 length: 272030
-2025-12-18 13:49:48,176 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:49:48] "GET /scp/diff?file1=LinePlus_T1.xml&file2=PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-12-18 13:49:48,192 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:49:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:49:56,611 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:50:06,812 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:06] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:50:06,824 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:06,829 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:06] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:06,830 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:06] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:50:06,840 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:50:06,862 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,244 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:50:07,259 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,262 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,263 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,293 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,404 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:50:07,418 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,425 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,425 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,458 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,573 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 13:50:07,585 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,590 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,590 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:07,629 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:07] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 13:50:10,063 [INFO] backend.routes.scp_routes: Reading file1: D:\Code\iDRAC_Info\idrac_info\data\xml\T8A_R6625_P.xml
-2025-12-18 13:50:10,063 [INFO] backend.routes.scp_routes: Reading file2: D:\Code\iDRAC_Info\idrac_info\data\xml\T8A_R6625_P_NoRaid.xml
-2025-12-18 13:50:10,063 [INFO] backend.routes.scp_routes: Content1 length: 242350, Content2 length: 240509
-2025-12-18 13:50:10,066 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:10] "GET /scp/diff?file1=T8A_R6625_P.xml&file2=T8A_R6625_P_NoRaid.xml HTTP/1.1" 200 -
-2025-12-18 13:50:10,081 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:17,069 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:50:27,296 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:50:35,842 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:35] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 13:50:35,856 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:37,523 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:50:47,751 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:50:47,790 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:47] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 13:50:47,804 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:48,278 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:48] "GET /index HTTP/1.1" 200 -
-2025-12-18 13:50:48,292 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:48,297 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:48] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 13:50:48,298 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:48] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 13:50:48,299 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 13:50:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 13:50:57,978 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:51:08,208 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:51:18,434 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:51:28,660 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:51:38,885 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:51:49,115 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:51:59,342 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:52:09,567 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:52:19,798 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:52:30,027 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:52:40,252 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:52:50,479 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:53:00,707 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:53:10,932 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:53:21,161 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:53:31,387 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:53:41,614 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:53:51,839 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:54:02,067 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:54:12,296 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:54:22,523 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:54:32,750 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:54:42,978 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:54:53,204 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:55:03,432 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:55:13,659 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:55:23,888 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:55:34,146 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:55:44,373 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:55:54,599 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:56:04,849 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:56:15,077 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:56:25,305 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:56:35,531 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:56:45,758 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:56:55,984 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:57:06,212 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:57:16,437 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:57:26,663 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:57:36,890 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:57:47,115 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:57:57,352 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:58:07,579 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:58:17,805 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:58:28,031 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:58:38,269 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:58:48,495 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:58:58,722 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:59:08,950 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:59:19,196 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:59:29,424 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:59:39,650 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 13:59:49,876 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:00:00,103 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:00:10,331 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:00:20,557 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:00:30,784 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:00:41,011 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:00:51,237 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:01:01,463 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:01:11,689 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:01:21,915 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:01:32,141 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:01:42,367 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:01:52,600 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:02:02,825 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:02:13,053 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:02:23,278 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:02:33,504 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:02:43,731 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:02:53,958 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:03:04,184 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:03:14,414 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:03:24,641 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:03:34,871 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:03:45,097 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:03:55,324 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:04:05,551 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:04:15,779 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:04:26,006 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:04:36,235 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:04:46,463 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:04:56,689 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:05:06,915 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:05:17,141 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:05:27,379 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:05:37,607 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:05:47,832 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:05:58,060 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:06:08,287 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:06:18,513 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:06:28,743 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:06:38,969 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:06:49,202 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:06:59,898 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:07:10,138 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:07:20,371 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:07:30,603 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:07:40,833 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:07:51,063 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:08:01,293 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:08:11,525 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:08:21,754 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:08:31,984 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:08:42,215 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:08:52,445 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:09:02,675 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:09:12,904 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:09:23,135 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:09:33,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:09:43,596 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:09:53,826 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:10:04,056 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:10:14,285 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:10:24,515 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:10:34,747 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:10:44,976 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:10:55,205 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:11:05,435 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:11:15,669 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:11:25,900 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:11:36,130 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:11:46,359 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:11:56,592 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:12:06,822 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:12:17,053 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:12:27,284 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:12:37,517 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:12:47,748 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:12:57,978 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:13:08,210 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:13:18,442 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:13:28,672 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:13:38,902 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:13:49,135 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:13:59,366 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:14:09,597 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:14:19,829 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:14:30,059 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:14:40,289 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:14:50,521 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:15:00,751 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:15:10,981 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:15:21,211 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:15:31,441 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:15:41,670 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:15:51,901 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:16:02,131 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:16:12,366 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:16:22,596 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:16:32,829 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:16:43,062 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:16:53,292 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:17:03,525 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:17:13,756 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:17:23,986 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:17:34,216 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:17:44,445 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:17:54,676 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:18:04,907 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:18:15,137 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:18:25,367 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:18:35,596 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:18:45,825 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:18:56,055 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:19:06,285 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:19:16,522 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:19:26,754 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:19:36,986 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:19:47,219 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:19:57,448 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:20:07,694 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:20:17,924 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:20:28,153 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:20:38,383 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:20:48,613 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:20:58,844 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:21:09,074 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:21:19,304 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:21:29,534 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:21:39,765 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:21:49,995 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:22:00,228 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:22:10,460 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:22:20,694 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:22:30,928 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:22:41,161 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:22:51,394 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:23:01,627 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:23:11,862 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:23:22,094 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:23:32,329 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:23:42,565 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:23:52,798 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:24:03,476 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:24:13,708 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:24:23,938 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:24:34,163 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:24:44,390 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:24:54,612 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:25:04,847 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:25:15,072 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:25:25,293 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:25:35,516 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:25:45,739 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:25:55,961 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:26:06,188 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:26:16,410 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:26:26,638 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:26:36,861 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:26:47,086 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:26:57,309 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:27:07,535 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:27:17,759 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:27:27,984 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:27:38,206 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:27:48,429 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:27:58,653 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:28:08,876 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:28:19,101 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:28:29,325 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:28:39,550 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:28:49,774 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:28:59,998 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:29:10,232 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:29:20,458 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:29:30,681 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:29:40,904 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:29:51,127 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:30:01,352 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:30:11,578 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:30:21,804 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:30:32,028 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:30:42,253 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:30:52,477 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:31:02,702 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:31:12,940 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:31:23,163 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:31:33,386 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:31:43,610 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:31:53,835 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:32:04,058 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:32:14,287 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:32:24,514 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:32:34,738 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:32:44,964 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:32:55,187 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:33:05,410 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:33:15,636 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:33:25,860 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:33:36,083 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:33:46,307 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:33:56,536 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:34:06,759 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:34:16,984 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:34:27,209 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:34:37,434 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:34:47,659 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:34:57,887 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:35:08,120 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:35:18,348 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:35:28,575 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:35:38,798 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:35:49,025 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:35:59,250 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:36:09,473 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:36:19,706 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:36:29,929 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:36:40,153 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:36:50,376 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:37:00,601 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:37:10,830 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:37:21,054 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:37:31,289 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:37:41,511 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:37:51,757 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:38:01,983 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:38:12,205 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:38:22,427 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:38:32,652 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:38:42,886 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:38:53,113 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:39:03,340 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:39:13,562 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:39:23,786 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:39:34,009 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:39:44,235 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:39:54,457 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:40:04,689 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:40:14,912 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:40:25,137 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:40:35,361 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:40:45,585 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:40:55,809 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:41:06,498 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:41:16,725 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:41:26,954 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:41:37,187 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:41:47,415 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:41:57,646 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:42:07,875 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:42:18,108 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:42:28,336 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:42:38,562 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:42:48,790 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:42:59,017 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:43:09,244 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:43:19,470 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:43:29,697 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:43:39,925 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:43:50,151 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:44:00,378 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:44:10,608 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:44:20,845 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:44:31,072 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:44:41,297 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:44:51,535 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:45:01,762 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:45:11,988 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:45:22,220 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:45:32,445 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:45:42,671 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:45:52,901 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:46:03,128 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:46:13,358 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:46:23,583 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:46:33,811 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:46:44,037 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:46:54,266 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:47:04,493 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:47:14,719 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:47:24,945 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:47:35,172 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:47:45,401 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:47:55,627 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:48:05,854 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:48:16,082 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:48:26,325 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:48:36,557 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:48:46,784 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:48:57,012 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:49:07,241 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:49:17,472 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:49:27,705 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:49:37,932 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:49:48,159 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:49:58,389 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:50:08,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:50:18,844 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:50:29,072 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:50:39,299 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:50:49,526 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:50:59,753 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:51:09,982 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:51:20,209 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:51:30,435 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:51:40,662 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:51:50,889 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:52:01,115 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:52:11,342 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:52:21,570 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:52:31,801 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:52:42,028 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:52:52,255 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:53:02,483 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:53:12,710 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:53:22,938 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:53:33,165 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:53:43,408 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:53:53,637 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:54:03,864 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:54:14,092 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:54:24,320 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:54:34,553 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:54:44,779 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:54:55,009 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:55:05,236 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:55:15,462 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:55:25,689 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:55:35,916 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:55:46,147 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:55:56,373 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:56:06,602 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:56:16,829 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:56:27,054 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:56:37,284 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:56:47,518 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:56:57,747 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:57:07,973 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:57:18,199 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:57:28,427 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:57:38,656 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:57:48,883 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:57:59,117 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:58:09,819 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:58:20,045 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:58:30,271 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:58:40,497 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:58:50,724 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:59:00,950 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:59:11,177 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:59:21,404 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:59:31,632 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:59:41,858 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 14:59:52,087 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:00:02,315 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:00:12,565 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:00:22,791 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:00:33,020 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:00:43,249 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:00:53,475 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:01:03,715 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:01:13,941 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:01:24,167 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:01:34,397 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:01:44,622 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:01:54,849 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:02:05,078 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:02:15,309 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:02:25,536 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:02:35,762 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:02:45,989 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:02:56,215 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:03:06,441 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:03:16,667 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:03:26,902 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:03:37,128 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:03:47,356 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:03:57,583 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:04:07,812 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:04:18,039 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:04:28,265 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:04:38,508 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:04:48,735 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:04:58,961 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:05:09,189 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 15:05:19,424 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:00:12,118 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 16:00:12,136 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 16:00:12,136 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 16:00:12,197 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 16:00:12,210 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 16:00:12,210 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 16:00:12,210 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 16:00:12,246 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 16:00:12,246 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 16:00:13,254 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 16:00:13,484 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 16:00:13,486 [INFO] telegram.ext.Application: Application started
-2025-12-18 16:00:24,165 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:00:34,391 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:00:38,663 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:38] "[32mGET / HTTP/1.1[0m" 302 -
-2025-12-18 16:00:38,689 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:38] "GET /login?next=/ HTTP/1.1" 200 -
-2025-12-18 16:00:38,739 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:38] "GET /static/style.css HTTP/1.1" 200 -
-2025-12-18 16:00:38,801 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:38] "GET /static/favicon.ico HTTP/1.1" 200 -
-2025-12-18 16:00:44,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:00:45,598 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 16:00:45,598 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 16:00:45,637 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 16:00:45,637 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 16:00:45,638 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 16:00:45,638 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 16:00:45,639 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:45] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 16:00:45,654 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:45] "GET /index HTTP/1.1" 200 -
-2025-12-18 16:00:45,675 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:00:45,676 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:45] "GET /static/css/index.css HTTP/1.1" 200 -
-2025-12-18 16:00:45,685 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:45] "GET /static/script.js HTTP/1.1" 200 -
-2025-12-18 16:00:45,688 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:00:45] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-12-18 16:00:46,909 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 16:00:54,845 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:01:05,072 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:01:15,298 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:01:25,524 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:01:25,553 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:25] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 16:01:25,573 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:01:25,578 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:25] "GET /static/css/jobs.css HTTP/1.1" 200 -
-2025-12-18 16:01:25,593 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:25] "GET /static/js/jobs.js HTTP/1.1" 200 -
-2025-12-18 16:01:25,610 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:25] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 16:01:25,618 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 16:01:25,618 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:25] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 16:01:26,177 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:26] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 16:01:26,194 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:26] "GET /static/css/scp.css HTTP/1.1" 200 -
-2025-12-18 16:01:26,195 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:01:26,209 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:26] "GET /static/js/scp.js HTTP/1.1" 200 -
-2025-12-18 16:01:30,110 [INFO] backend.routes.scp_routes: Reading file1: D:\Code\iDRAC_Info\idrac_info\data\xml\LinePlus_T1.xml
-2025-12-18 16:01:30,122 [INFO] backend.routes.scp_routes: Reading file2: D:\Code\iDRAC_Info\idrac_info\data\xml\PO-20250826-0158 _가산3_XE9680_384EA.xml
-2025-12-18 16:01:30,133 [INFO] backend.routes.scp_routes: Content1 length: 244874, Content2 length: 272030
-2025-12-18 16:01:30,137 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:30] "GET /scp/diff?file1=LinePlus_T1.xml&file2=PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-12-18 16:01:30,151 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:01:35,751 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:01:45,977 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:01:56,203 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:01:59,286 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:59] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 16:01:59,301 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:01:59,306 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:59] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 16:01:59,306 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:01:59] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 16:02:06,429 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:02:11,121 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:02:11] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 16:02:11,134 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:02:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:02:16,656 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:02:26,883 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:02:37,111 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:02:47,340 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:02:57,567 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:03:07,793 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:03:18,020 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:03:28,245 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:03:38,471 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:03:48,699 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:03:58,925 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:04:09,151 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:04:19,379 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:04:29,605 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:04:39,832 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:04:50,059 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:05:00,285 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:05:10,512 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:05:20,738 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:05:30,969 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:05:41,197 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:05:51,425 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:06:01,651 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:06:11,877 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:06:22,106 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:06:32,332 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:06:42,559 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:06:52,787 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:07:03,013 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:07:13,239 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:07:20,205 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 16:07:20,222 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:20,224 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:20,225 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:20,226 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,311 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "GET /index HTTP/1.1" 200 -
-2025-12-18 16:07:22,326 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,332 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,332 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,333 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,978 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "GET /index HTTP/1.1" 200 -
-2025-12-18 16:07:22,992 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,997 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,998 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:22,998 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:22] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:23,450 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:23] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 16:07:23,465 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:23,468 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:07:23,469 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:23] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:23,470 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:23] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:25,834 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:25] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 16:07:25,847 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:25,852 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:25] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-18 16:07:25,853 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:25] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-18 16:07:25,859 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:25] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 16:07:25,879 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 16:07:25,880 [INFO] werkzeug: 192.168.0.20 - - [18/Dec/2025 16:07:25] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 16:07:33,697 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:07:43,923 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:07:54,151 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:08:04,378 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:08:14,605 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:08:24,832 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:08:35,061 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 16:08:45,287 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:22:39,086 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 20:22:39,108 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 20:22:39,108 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 20:22:39,133 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 20:22:39,147 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 20:22:39,147 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 20:22:39,148 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 20:22:39,166 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 20:22:39,166 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 20:22:40,188 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 20:22:40,414 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 20:22:40,416 [INFO] telegram.ext.Application: Application started
-2025-12-18 20:22:43,258 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:43] "[32mGET / HTTP/1.1[0m" 302 -
-2025-12-18 20:22:43,271 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:43] "GET /login?next=/ HTTP/1.1" 200 -
-2025-12-18 20:22:43,320 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:22:51,094 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:22:53,238 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 20:22:53,238 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 20:22:53,277 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 20:22:53,277 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 20:22:53,279 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 20:22:53,279 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 20:22:53,279 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:53] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 20:22:53,294 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:22:53,313 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:22:53,315 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:53] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-12-18 20:22:53,316 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:22:53,326 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:22:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:22:54,518 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 20:23:01,321 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:23:04,863 [INFO] root: [AJAX] 작업 시작: 1766056984.8591661, script: TYPE8A_Server_info.sh
-2025-12-18 20:23:04,863 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:04] "POST /process_ips HTTP/1.1" 200 -
-2025-12-18 20:23:04,869 [ERROR] root: 10.10.0.1 처리 중 오류 발생: name 'shutil' is not defined
-2025-12-18 20:23:05,369 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:05] "GET /progress_status/1766056984.8591661 HTTP/1.1" 200 -
-2025-12-18 20:23:06,883 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:23:06,896 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:23:06,901 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:23:06,901 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:23:06,902 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:23:06,938 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:23:10,030 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:10] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:23:10,042 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:23:10,047 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:10] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:23:10,047 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:10] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:23:10,047 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:10] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:23:10,072 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:10] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:23:11,549 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:23:13,558 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:13] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:23:13,572 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:23:13,577 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:13] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:23:13,577 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:13] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:23:13,578 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:13] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:23:13,603 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:23:13] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:23:21,776 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:23:32,002 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:23:42,229 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:23:52,455 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:24:02,682 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:24:12,908 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:24:14,554 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:14] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:24:14,571 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:24:14,574 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:14] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:24:14,577 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:14] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:24:14,578 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:14] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:24:14,614 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:14] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:24:15,198 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:15] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:24:15,214 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:24:15,216 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:15] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:24:15,216 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:15] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:24:15,218 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:15] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:24:15,249 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:24:15] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:24:23,135 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:24:33,361 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:24:43,587 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:24:53,814 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:25:04,041 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:25:05,903 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:25:05] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:25:05,919 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:25:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:25:05,924 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:25:05] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:25:05,926 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:25:05] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:25:05,926 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:25:05] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:25:05,953 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:25:05] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:25:14,266 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:25:24,492 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:25:34,719 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:25:44,945 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:25:55,171 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:26:05,399 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:26:15,626 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:26:16,004 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:26:16] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:26:16,026 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:26:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:26:16,028 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:26:16] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:26:16,029 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:26:16] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:26:16,030 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:26:16] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:26:16,068 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:26:16] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:26:25,854 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:26:36,082 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:26:46,309 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:26:56,535 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:27:06,762 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:27:16,990 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:27:27,217 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:27:37,444 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:27:47,672 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:27:57,898 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:28:08,124 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:28:18,350 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:28:28,576 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:28:38,804 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:28:40,527 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:28:40] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:28:40,549 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:28:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:28:40,552 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:28:40] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:28:40,552 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:28:40] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:28:40,553 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:28:40] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:28:40,583 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:28:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:28:49,030 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:28:59,257 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:29:09,483 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:29:19,710 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:29:20,439 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:29:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:29:20,460 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:29:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:29:20,462 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:29:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:29:20,463 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:29:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:29:20,464 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:29:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:29:20,498 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:29:20] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:29:29,936 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:29:40,162 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:29:50,388 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:30:00,615 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:30:10,842 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:30:21,069 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:30:27,832 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:30:27] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:30:27,852 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:30:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:30:27,854 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:30:27] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:30:27,854 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:30:27] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:30:27,856 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:30:27] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:30:27,887 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:30:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:30:31,295 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:30:41,521 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:30:51,749 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:31:01,975 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:31:12,202 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:31:22,428 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:31:32,655 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:31:42,881 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:31:53,108 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:32:03,334 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:32:13,562 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:32:23,788 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:32:27,751 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:27] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:27,770 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:27,771 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:27] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:27,773 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:27] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:27,774 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:27] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:27,807 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,262 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:28,280 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,281 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,282 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,282 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,312 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,438 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:28,450 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,454 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,455 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,455 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,487 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,622 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:28,633 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,638 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,638 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,638 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,673 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,846 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:28,858 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,863 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,863 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,864 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:28,897 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:29,270 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:29] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:29,284 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:29,289 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:29] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:29,289 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:29] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:29,290 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:29] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:29,319 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:29] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,061 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:30,076 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,077 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,077 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,079 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,115 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,277 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:32:30,289 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,293 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,294 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,294 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:30,329 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:30] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:32:33,410 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:33] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 20:32:33,422 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:33,426 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:33] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 20:32:33,426 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:32:33] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 20:32:34,014 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:32:44,240 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:32:54,466 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:33:04,694 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:33:14,921 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:33:25,147 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:33:35,375 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:33:45,603 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:33:55,829 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:34:06,056 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:34:16,283 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:34:26,510 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:34:36,739 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:34:46,967 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:34:57,193 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:35:07,419 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:35:17,646 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:35:27,875 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:35:38,103 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:35:48,329 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:35:58,556 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:36:08,783 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:36:19,011 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:36:29,238 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:36:39,465 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:36:49,691 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:36:59,918 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:37:04,647 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:04] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 20:37:04,664 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:05,557 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:05] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:05,576 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:05,577 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:05] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:05,578 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:05] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:05,579 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:05] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,007 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:06,021 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,026 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,026 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,027 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,063 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,846 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:06,859 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,863 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,864 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,865 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:06,897 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:37:10,144 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:37:20,370 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:37:25,255 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:25] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:25,267 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:25,272 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:25] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:25,273 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:25] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:25,273 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:25] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:25,299 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:25] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:37:26,702 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:26] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:26,713 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:26,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:26] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:26,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:26] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:26,719 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:26] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:26,746 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:26] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:37:27,575 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:27] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:27,591 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:27,592 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:27] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:27,593 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:27] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:27,593 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:27] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:27,622 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:37:30,597 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:37:39,104 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:39,116 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,121 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,122 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-12-18 20:37:39,123 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,148 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,614 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:37:39,625 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,630 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,631 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,631 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:37:39,665 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:37:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:37:40,823 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:37:51,049 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:38:01,275 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:38:11,502 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:38:21,729 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:38:31,957 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:38:42,183 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:38:52,410 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:39:02,636 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:39:12,863 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:39:19,642 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:39:19] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:39:19,661 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:39:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:39:19,667 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:39:19] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:39:19,667 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:39:19] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:39:19,667 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:39:19] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:39:19,701 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:39:19] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:39:23,090 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:39:33,316 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:39:43,542 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:39:54,216 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:40:04,440 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:40:14,665 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:40:24,889 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:40:35,115 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:40:45,339 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:40:55,563 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:41:05,787 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:41:16,012 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:41:26,236 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:41:36,460 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:41:46,684 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:41:56,910 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:42:07,136 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:42:17,361 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:42:27,586 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:42:37,812 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:42:48,036 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:42:58,260 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:43:08,485 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:43:10,485 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:10] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:10,505 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:10,508 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:10] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:10,510 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:10] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:10,510 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:10] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-12-18 20:43:10,552 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:10] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,016 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:11,033 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,035 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,037 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,037 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,071 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,495 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:11,511 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,514 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,515 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,515 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,547 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,871 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:11,886 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,889 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:11,919 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:11] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,354 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:13,369 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,371 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,372 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,372 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,404 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,639 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:13,651 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,657 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,657 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,658 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:13,690 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:13] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:18,709 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:43:20,992 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:21,006 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,010 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,012 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,012 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,040 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,270 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:21,286 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,286 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,287 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,287 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:21,319 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:28,934 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:43:39,158 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:43:49,382 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:43:56,199 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:56] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:43:56,217 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:56,222 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:56] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:56,223 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:56] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:43:56,224 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:43:56,253 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:43:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:43:59,607 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:44:09,834 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:44:20,057 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:44:30,281 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:44:40,504 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:44:50,729 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:45:00,953 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:45:05,864 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:05] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:45:05,883 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:45:05,887 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:05] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:45:05,888 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:05] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:45:05,888 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:05] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-12-18 20:45:05,925 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:05] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:45:06,351 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:45:06,368 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:45:06,371 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:45:06,372 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:45:06,372 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:45:06,408 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:45:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:45:11,177 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:45:21,401 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:45:31,626 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:45:41,852 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:45:52,076 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:46:02,306 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:46:12,529 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:46:22,753 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:46:32,978 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:46:43,202 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:46:44,685 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:44] "[33mPOST /utils/scan_network HTTP/1.1[0m" 404 -
-2025-12-18 20:46:48,457 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:48] "[33mPOST /utils/scan_network HTTP/1.1[0m" 404 -
-2025-12-18 20:46:49,960 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:49] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:46:49,977 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:46:49,981 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:49] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:46:49,983 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:49] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:46:49,984 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:46:50,010 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:46:50,119 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:46:50,135 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:46:50,137 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:46:50,138 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:46:50,139 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:46:50,167 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:46:50,759 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:46:50] "[33mPOST /utils/scan_network HTTP/1.1[0m" 404 -
-2025-12-18 20:46:53,426 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:47:01,006 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:47:01] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:47:01,022 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:47:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:47:01,026 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:47:01] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:47:01,027 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:47:01] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:47:01,027 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:47:01] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:47:01,056 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:47:01] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:47:03,650 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:47:13,878 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:47:24,104 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:47:34,328 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:47:44,552 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:47:54,776 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:48:05,001 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:48:15,231 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:48:25,455 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:48:35,678 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:48:36,618 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:36] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:36,635 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:36,640 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:36] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:36,641 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:36] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:36,641 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:36] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:36,673 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:36] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:37,239 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:37] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:37,255 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:37,258 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:37] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:37,259 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:37] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:37,260 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:37] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:37,290 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:37] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,199 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:38,211 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,216 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,217 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,217 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,251 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,918 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:38,932 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,935 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,936 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,937 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:38,969 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:38] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:39,703 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:39] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:39,715 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:39,720 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:39] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:39,721 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:39] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:39,721 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:39] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:39,753 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:40,879 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:40] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:40,891 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:40,896 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:40] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:40,897 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:40] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:40,897 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:40] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:40,924 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:41,783 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:41] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:41,795 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:41,798 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:41] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:41,799 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:41] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:41,800 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:41] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:41,831 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:41] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:42,455 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:42] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:42,466 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:42,471 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:42] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:42,472 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:42] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:42,473 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:42] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:42,506 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:42] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:43,111 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:43] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:43,123 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:43,127 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:43] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:43,128 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:43] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:43,128 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:43,160 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:43] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,135 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:44,147 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,153 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,154 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,154 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,181 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,897 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:44,909 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,913 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,915 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,915 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:44,948 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:44] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:45,609 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:45] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:45,621 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:45,626 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:45] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:45,627 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:45] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:45,627 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:45] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:45,660 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:45] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:45,903 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:48:46,230 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:46] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:46,245 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:46,246 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:46] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:46,248 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:46] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:46,249 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:46] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:46,279 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:47,481 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:47] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:47,494 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:47,498 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:47] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:47,499 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:47] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:47,499 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:47] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:47,525 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:47] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:48,592 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:48] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:48,610 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:48,612 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:48] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:48,614 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:48] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:48,615 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:48,641 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,038 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:51,050 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,055 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,056 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,056 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,082 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,550 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:51,562 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,567 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,568 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,567 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:51,595 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:52,355 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:52,368 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:52,373 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:52,374 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:52,374 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:52,408 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:52,983 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:52,995 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,000 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,032 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,623 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:53,634 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,639 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,640 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,640 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:53,676 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:55,593 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:55] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:55,605 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:55,610 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:55] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:55,610 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:55] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:55,611 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:55] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:55,637 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:55] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:56,054 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:56] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:56,071 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:56,072 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:56] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:56,073 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:56] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:56,073 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:56,111 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:56,126 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:48:57,134 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:57,146 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,151 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,152 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,152 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,180 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,776 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:57,788 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,792 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,793 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,793 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:57,826 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:58,272 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:58] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:58,285 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:58,290 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:58] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:58,291 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:58] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:58,291 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:58,319 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:58] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:48:59,081 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:59] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:48:59,098 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:59,103 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:59] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:48:59,104 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:59] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:59,105 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:59] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:48:59,141 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:48:59] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,136 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:01,152 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,157 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,158 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,159 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,187 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,382 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:01,395 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,399 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,400 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,401 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,433 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,582 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:01,601 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,603 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,605 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,605 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:01,636 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:01] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,583 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:02,596 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,601 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,601 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,602 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,635 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,950 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:02,963 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,966 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,966 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:02,967 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:02] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:03,000 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:05,959 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:05] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:05,971 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:05,975 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:05] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:05,976 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:05] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:05,976 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:05] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,222 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:06,235 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,240 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,241 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,241 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,271 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,351 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:49:06,462 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:06,475 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,480 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,481 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,481 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:06,514 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:07,207 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:07] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:07,222 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:07,228 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:07] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:07,228 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:07] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:07,229 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:07] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:07,264 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:07] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:08,911 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:08] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:08,923 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:08,928 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:08] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:08,928 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:08] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:08,930 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:08] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:08,954 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:08] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:09,086 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:09] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:09,100 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:09,104 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:09] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:09,105 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:09] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:09,105 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:09] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:09,136 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:09] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:16,575 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:49:16,934 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:16] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:16,947 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:16,952 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:16] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:16,953 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:16] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:16,954 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:16] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:16,982 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:16] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:17,542 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:17] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:17,554 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:17,559 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:17] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:17,560 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:17] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:17,560 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:17] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:17,590 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:17] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,351 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:20,363 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,368 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,369 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,369 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,399 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,862 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:20,875 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,881 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:20,914 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:20] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,352 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:21,365 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,369 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,370 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,370 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,404 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:21,731 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,735 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:21,770 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:22,158 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:22] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:22,172 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:22,177 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:22] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:22,177 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:22] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:22,177 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:22] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:22,213 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:22] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:23,167 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:23,179 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:23,184 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:23,185 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:23,185 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:23,215 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:23,983 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:23,995 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,000 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,034 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,455 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:24,467 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,472 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,473 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,473 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:24,506 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:24] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,166 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:25,179 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,185 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,186 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,186 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,212 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:25,733 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:25,768 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:25] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:26,294 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:26] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:26,305 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:26,310 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:26] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:26,310 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:26] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:26,312 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:26] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:26,339 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:26] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:26,799 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:49:27,007 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:27,019 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,024 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,025 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,025 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,059 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,671 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:27,683 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,688 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,688 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,689 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:27,722 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,406 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:28,418 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,423 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,423 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,424 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,456 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,935 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:28,948 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,953 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,953 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,954 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:28,988 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:29,503 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:29] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:29,515 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:29,522 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:29] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:29,522 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:29] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:29,522 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:29] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:29,549 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:29] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:30,511 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:30] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:30,524 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:30,527 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:30] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:30,530 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:30] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:30,530 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:30] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:30,558 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:30] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,110 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:31,122 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,128 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,128 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,128 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,162 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,567 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:31,579 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,583 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,584 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,584 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:31,618 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,016 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:32,028 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,033 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,033 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,033 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,070 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,518 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:32,531 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,536 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,536 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,537 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:32,571 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:32] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,103 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:33,115 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,119 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,120 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,120 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,153 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:33,731 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,737 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:33,767 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:33] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:34,328 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:34] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:34,341 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:34,345 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:34] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:34,346 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:34] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:34,346 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:34] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:34,380 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:34] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:36,647 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:36] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:36,659 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:36,664 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:36] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:36,665 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:36] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:36,665 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:36] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:36,692 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:36] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:37,025 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:49:37,210 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:37] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:37,224 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:37,228 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:37] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:37,229 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:37] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:37,230 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:37] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:37,264 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:37] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,119 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:38,131 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,137 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,137 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,137 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,170 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,950 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:38,966 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,969 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,969 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,969 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:38,999 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:38] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:39,742 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:39] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:39,757 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:39,758 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:39] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:39,760 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:39] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:39,761 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:39] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:39,793 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:40,631 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:40] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:40,644 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:40,649 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:40] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:40,649 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:40] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:40,650 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:40] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:40,685 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,111 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:41,125 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,129 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,130 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,130 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,165 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,502 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:41,515 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,519 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,520 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,521 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:41,553 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:41] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:45,998 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:45] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:46,010 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,015 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,015 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,016 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,046 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,527 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:46,539 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,543 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,544 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,544 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:46,577 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,006 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:47,018 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,023 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,023 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,023 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,065 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,249 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:49:47,863 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:47,875 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:47,915 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:47] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,374 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:48,390 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,392 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,393 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,393 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,424 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,807 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:48,819 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,824 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,824 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,825 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:48,858 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,143 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:49,156 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,160 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,160 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,161 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,195 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,446 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:49,458 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,462 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,463 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,464 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:49,497 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:49] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:50,478 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:50] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:50,492 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:50,496 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:50] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:50,496 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:50] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:50,497 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:50,525 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,071 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:51,083 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,087 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,088 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,088 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,121 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,863 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:51,878 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,883 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,883 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:51,918 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:52,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:52,894 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:52,899 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:52] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:52,899 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:52] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:52,900 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:52,927 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,367 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:53,379 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,385 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,386 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,386 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,419 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,655 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:53,668 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,672 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,673 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,673 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:53,706 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:54,016 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:54] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:54,030 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:54,033 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:54] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:54,034 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:54] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:54,034 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:54] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:54,068 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:54] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:56,520 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:56] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:56,535 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:56,536 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:56] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:56,537 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:56] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:56,538 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:56,566 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,183 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:57,195 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,201 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,201 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,202 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,232 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,473 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:49:57,536 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:57,549 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,554 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,555 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,555 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,593 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,784 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:57,796 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,802 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,802 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,802 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:57,827 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,295 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:58,308 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,313 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,314 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,314 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,349 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,591 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:58,604 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,612 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,614 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,615 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,648 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,871 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:49:58,883 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,889 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:49:58,923 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:49:58] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:07,697 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:50:12,335 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:12,349 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,352 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,354 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,354 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,380 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,929 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:12,941 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,945 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,945 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,946 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:12,978 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:12] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:13,496 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:13] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:13,508 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:13,513 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:13] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:13,514 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:13] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:13,514 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:13] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:13,551 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:13] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:14,167 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:14] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:14,184 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:14,184 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:14] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:14,185 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:14] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:14,186 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:14] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:14,217 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:14] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:15,247 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:15] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:15,261 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:15,264 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:15] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:15,265 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:15] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:15,265 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:15] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:15,290 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:15] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:16,295 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:16] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:16,306 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:16,311 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:16] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:16,312 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:16] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:16,312 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:16] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:16,340 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:16] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:17,272 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:17] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:17,286 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:17] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:17,288 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:17] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:17,289 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:17] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:17,290 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:17] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:17,322 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:17] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:17,921 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:50:18,552 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:18] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:18,566 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:18,571 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:18] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:18,572 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:18] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:18,572 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:18] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:18,604 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:18] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:19,462 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:19] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:19,475 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:19,480 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:19] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:19,481 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:19] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:19,482 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:19] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:19,516 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:19] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,086 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:20,098 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,104 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,104 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,105 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,140 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,608 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:20,622 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,627 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,629 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,630 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:20,663 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:20] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:21,368 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:21,381 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:21,387 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:21,387 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:21,388 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:21,420 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:21,983 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:21,997 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,002 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,002 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,033 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,807 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:22,820 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,825 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,825 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,826 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:22,858 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:22] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:23,440 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:23] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:23,453 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:23,457 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:23] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:23,458 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:23] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:23,459 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:23] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:23,494 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:23] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:24,272 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:24] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:24,286 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:24,290 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:24] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:24,290 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:24] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:24,291 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:24] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:24,324 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:24] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,023 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:25,036 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,041 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,041 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,042 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,076 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,767 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:25,780 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,786 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,786 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,786 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:25,818 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:25] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,111 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:27,123 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,129 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,130 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,130 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,155 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,671 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:27,685 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,688 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,689 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,689 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:27,723 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:27] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,146 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:50:28,206 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:28,219 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,223 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,224 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,225 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,255 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,775 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:28,789 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,792 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,794 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,794 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:28,829 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:28] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:29,368 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:29] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:29,382 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:29,386 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:29] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:29,388 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:29] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:29,388 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:29] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:29,422 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:29] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:30,086 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:30] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:30,100 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:30,105 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:30] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:30,106 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:30] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:30,107 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:30] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:30,141 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:30] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,071 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:31,084 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,088 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,089 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,090 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,124 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,775 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:31,788 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,792 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,793 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,794 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:31,829 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,342 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:32,354 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,360 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,360 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,361 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,389 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,913 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:32,926 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,930 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,931 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,931 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:32,958 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:32] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:33,697 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:33] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:33,710 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:33,715 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:33] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:33,716 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:33] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:33,716 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:33] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:33,745 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:33] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:34,389 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:34] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:34,401 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:34,407 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:34] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:34,407 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:34] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:34,408 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:34] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:34,442 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:34] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,049 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:35,061 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,065 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,066 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,066 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,100 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,830 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:35,842 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,846 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,847 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,847 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:35,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:35] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:36,455 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:36] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:36,468 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:36,472 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:36] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:36,473 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:36] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:36,473 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:36] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:36,507 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:36] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:37,487 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:37,499 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:37,504 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:37,504 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:37,505 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:37,532 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:37,984 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:37,997 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,002 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,044 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,371 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:50:38,414 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:38,428 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,433 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,433 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,434 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:38,468 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:38] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,110 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:39,123 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,129 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,129 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,129 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,160 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,638 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:39,651 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,657 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,657 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,658 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:39,692 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:40,375 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:40] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:40,387 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:40,392 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:40] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:40,393 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:40] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:40,393 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:40] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:40,420 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:41,487 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:41] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:41,500 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:41,504 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:41] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:41,505 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:41] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:41,505 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:41] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:41,533 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:41] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,055 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:42,067 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,072 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,072 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,073 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,106 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,535 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:42,548 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,553 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,554 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,554 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:42,587 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:42] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,198 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:43,213 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,216 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,216 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,217 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,247 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,928 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:43,941 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,942 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,943 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,945 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:43,975 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:43] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:44,903 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:44] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:44,916 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:44,920 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:44] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:44,921 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:44] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:44,920 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:44] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:44,954 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:44] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:45,487 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:45] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:45,498 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:45,503 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:45] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:45,504 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:45] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:45,504 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:45] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:45,539 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:45] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,206 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:46,218 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,222 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,223 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,224 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,256 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,871 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:46,882 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,886 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,887 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,888 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:46,917 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:47,567 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:47] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:47,579 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:47,585 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:47] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:47,586 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:47] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:47,586 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:47] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:47,624 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:47] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:48,288 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:48] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:48,301 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:48,306 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:48] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:48,307 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:48] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:48,308 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:48,342 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:48,594 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:50:49,031 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:49,046 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,049 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,049 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,049 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,082 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,695 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:49,707 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,711 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,712 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,712 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:49,745 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:49] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,274 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:50,288 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,294 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,295 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,296 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,331 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,776 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:50,788 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,793 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,794 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,794 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:50,828 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,047 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:51,060 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,064 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,065 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,065 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,099 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,254 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:51,267 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,271 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,273 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,273 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,309 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,479 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:51,491 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,495 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,496 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,496 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,535 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,734 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:51,746 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,751 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,752 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,753 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,785 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,974 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:51,986 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,991 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,992 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:51,992 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,023 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,198 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:52,212 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,213 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,214 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,215 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,247 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,440 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:52,456 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,458 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,458 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,459 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,487 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,679 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:52,691 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,696 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,696 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,697 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,727 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,918 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:52,932 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,935 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,936 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,936 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:52,963 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,176 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:53,190 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,193 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,194 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,195 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,228 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,398 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:53,413 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,415 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,416 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,417 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,443 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,639 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:53,654 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,657 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,658 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,658 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:53,689 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:54,471 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:54] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:54,483 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:54,488 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:54] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:54,488 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:54] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:54,489 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:54] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:54,521 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:54] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,278 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:55,291 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,296 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,296 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,297 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,330 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,959 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:55,974 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,975 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,977 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:55,978 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:55] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:56,010 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:56,703 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:56] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:56,714 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:56,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:56] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:56,719 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:56] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:56,720 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:56,754 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,239 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:57,251 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,256 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,257 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,257 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,291 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,848 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:57,859 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,863 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,864 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,864 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:57,897 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,414 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:58,426 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,431 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,432 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,432 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,466 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,622 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:58,637 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,639 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,640 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,641 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,675 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,815 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:50:58,818 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:50:58,832 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,834 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,834 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,836 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:50:58,869 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:50:58] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,239 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:02,251 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,256 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,256 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,256 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,288 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,543 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:02,556 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,561 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,562 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,563 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:02,599 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:02] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,223 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:03,235 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,240 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,240 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,240 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,274 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,913 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:03,928 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,930 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,931 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,932 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:03,961 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:04,383 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:04] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:04,395 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:04,401 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:04] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:04,403 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:04] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:04,404 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:04] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:04,439 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:05,831 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:05] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:05,844 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:05,849 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:05] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:05,849 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:05] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:05,850 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:05] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:05,881 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:05] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:06,759 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:06,771 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:06,775 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:06,776 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:06,776 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:06,810 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:07,446 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:07] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:51:07,461 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:07,463 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:07] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:07,464 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:07] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:51:07,465 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:07] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:51:07,499 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:51:07] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:51:09,042 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:51:19,269 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:51:29,493 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:51:39,717 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:51:49,941 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:52:00,167 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:52:10,391 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:52:20,614 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:52:30,838 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:52:41,068 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:52:51,292 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:53:01,516 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:53:11,739 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:53:21,969 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:53:32,196 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:53:42,422 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:53:52,647 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:54:02,870 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:54:13,094 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:54:18,408 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:54:18] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:54:18,430 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:54:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:54:18,432 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:54:18] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:54:18,433 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:54:18] "GET /static/js/index.js HTTP/1.1" 200 -
-2025-12-18 20:54:18,434 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:54:18] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:54:18,465 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:54:18] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:54:23,318 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:54:33,543 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:54:43,768 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:54:53,992 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:55:04,217 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:55:14,440 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:55:24,664 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:55:34,888 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:55:38,177 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:55:38] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:55:38,199 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:55:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:55:38,201 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:55:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:55:38,204 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:55:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:55:38,205 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:55:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:55:38,241 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:55:38] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:55:45,113 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:55:55,337 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:56:05,560 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:56:15,784 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:56:26,008 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:56:36,233 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:56:46,456 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:56:57,137 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:57:07,364 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:57:17,589 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:57:27,817 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:57:38,043 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:57:42,856 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:42] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:57:42,876 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:57:42,877 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:42] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:57:42,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:42] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:57:42,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:42] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:57:42,912 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:42] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:57:43,959 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:43] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:57:43,974 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:57:43,976 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:43] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:57:43,979 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:57:43,979 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:43] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:57:44,007 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:57:44] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:57:48,269 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:57:58,494 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:58:08,720 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:58:18,946 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:58:29,172 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:58:39,398 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:58:47,832 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:47] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:47,848 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:47,853 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:47] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:47,854 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:47] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:47,855 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:47] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:47,886 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:47] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:48,560 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:48] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:48,576 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:48,577 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:48] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:48,579 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:48] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:48,580 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:48] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:48,611 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:48] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:49,624 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:58:49,694 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:49] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:49,709 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:49,712 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:49] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:49,713 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:49] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:49,713 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:49] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:49,739 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:49] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:50,447 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:50] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:50,462 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:50,464 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:50] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:50,465 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:50] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:50,465 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:50,499 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:50] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:52,463 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:52] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:52,476 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:52,481 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:52] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:52,481 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:52] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:52,482 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:52] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:52,509 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,239 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:53,254 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,257 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,259 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,259 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,292 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,967 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:53,979 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,984 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,985 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:53,985 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:53] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:54,017 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:54] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:57,511 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:58:57,523 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:57,528 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:57,529 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:58:57,529 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:58:57,561 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:58:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:58:59,849 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:59:03,191 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:59:03,204 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,210 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,210 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,210 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,242 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,584 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:59:03,600 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,602 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,603 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,604 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,634 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,927 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:59:03,939 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,944 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,944 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,945 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:03,979 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,031 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:59:06,044 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,047 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,048 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,049 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,073 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,456 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:59:06,469 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,473 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,474 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,475 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:06,509 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:06] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:59:08,738 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:08] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:59:08,753 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:08,757 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:08] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:08,758 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:08] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:08,759 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:08] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:08,785 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:08] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:59:09,303 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:09] "GET /index HTTP/1.1" 200 -
-2025-12-18 20:59:09,316 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:09,322 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:09] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 20:59:09,323 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:09] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:09,323 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:09] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 20:59:09,357 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 20:59:09] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 20:59:10,075 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:59:20,308 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:59:30,534 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:59:40,760 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 20:59:50,986 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:00:01,212 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:00:11,437 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:00:21,663 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:00:31,889 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:00:42,114 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:00:52,354 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:01:02,580 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:01:11,280 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:11] "GET /index HTTP/1.1" 200 -
-2025-12-18 21:01:11,308 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:01:11,310 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:11] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 21:01:11,311 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:11] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 21:01:11,313 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:11] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 21:01:11,375 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:11] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 21:01:11,994 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:11] "GET /index HTTP/1.1" 200 -
-2025-12-18 21:01:12,010 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:01:12,012 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:12] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 21:01:12,013 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:12] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 21:01:12,013 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:12] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 21:01:12,045 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:12] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 21:01:12,814 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:01:23,041 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:01:33,267 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:01:43,493 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:01:45,696 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:45] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 21:01:45,711 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:01:45,716 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:45] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 21:01:45,717 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:45] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 21:01:53,430 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:53] "GET /edit_xml/T6_R760_RAID_A.xml HTTP/1.1" 200 -
-2025-12-18 21:01:53,445 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:01:53,722 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:01:56,875 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:56] "GET /edit_xml/R650_TY1.xml HTTP/1.1" 200 -
-2025-12-18 21:01:56,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:01:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:02:03,948 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:02:14,174 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:02:19,378 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:02:19] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 21:02:19,392 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:02:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:02:21,598 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:02:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 21:02:21,615 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:02:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:02:21,617 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:02:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 21:02:21,618 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:02:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 21:02:21,618 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:02:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 21:02:24,400 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:02:34,627 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:02:44,853 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:02:55,079 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:03:05,307 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:03:15,533 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:03:25,760 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:03:35,986 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:03:46,212 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:03:56,439 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:04:06,664 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:04:16,890 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:04:27,116 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:04:34,695 [INFO] app: LOGOUT: user=김강희
-2025-12-18 21:04:34,695 [INFO] app: LOGOUT: user=김강희
-2025-12-18 21:04:34,696 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:04:34] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-12-18 21:04:34,699 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:04:34] "GET /login HTTP/1.1" 200 -
-2025-12-18 21:04:34,715 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 21:04:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 21:04:35,942 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 21:04:37,341 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:04:47,567 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:04:57,792 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:05:08,019 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:05:18,245 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:05:28,471 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:05:38,697 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:05:48,924 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:05:59,151 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:06:09,378 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 21:06:19,604 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:53:19,078 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 22:53:19,100 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 22:53:19,100 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 22:53:19,123 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 22:53:19,137 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 22:53:19,137 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 22:53:19,138 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 22:53:19,157 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 22:53:19,157 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 22:53:20,167 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 22:53:20,407 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 22:53:20,409 [INFO] telegram.ext.Application: Application started
-2025-12-18 22:53:22,588 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:22] "[32mGET / HTTP/1.1[0m" 302 -
-2025-12-18 22:53:22,601 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:22] "GET /login?next=/ HTTP/1.1" 200 -
-2025-12-18 22:53:22,630 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 22:53:31,101 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:53:32,041 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 22:53:32,041 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 22:53:32,079 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 22:53:32,079 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 22:53:32,081 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 22:53:32,081 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 22:53:32,082 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:32] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 22:53:32,098 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:32] "GET /index HTTP/1.1" 200 -
-2025-12-18 22:53:32,117 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 22:53:32,119 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:32] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 22:53:32,120 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:32] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 22:53:32,120 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:53:32] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 22:53:33,294 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 22:53:41,335 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:53:51,568 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:54:01,803 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:54:04,062 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:04] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 22:54:04,077 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 22:54:04,082 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:04] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 22:54:04,083 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:04] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 22:54:12,035 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:54:12,145 [INFO] backend.routes.scp_routes: Reading file1: D:\Code\iDRAC_Info\idrac_info\data\xml\R650_TY1.xml
-2025-12-18 22:54:12,145 [INFO] backend.routes.scp_routes: Reading file2: D:\Code\iDRAC_Info\idrac_info\data\xml\R6615.xml
-2025-12-18 22:54:12,158 [INFO] backend.routes.scp_routes: Content1 length: 240341, Content2 length: 249202
-2025-12-18 22:54:12,162 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:12] "GET /scp/diff?file1=R650_TY1.xml&file2=R6615.xml HTTP/1.1" 200 -
-2025-12-18 22:54:12,176 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 22:54:20,199 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 22:54:20,210 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 22:54:20,214 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 22:54:20,215 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 22:54:20,217 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 22:54:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 22:54:22,266 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:54:32,501 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:54:42,736 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:54:52,968 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:55:03,200 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:55:13,435 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:55:23,667 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:55:33,903 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:55:44,136 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:55:54,371 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:56:04,605 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:56:14,874 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:56:25,105 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:56:35,339 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:56:45,579 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:56:55,819 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:57:06,056 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:57:16,305 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:57:26,537 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:57:36,774 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:57:47,006 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:57:57,239 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:58:07,475 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:58:17,707 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:58:27,942 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:58:38,180 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:58:48,410 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:58:58,642 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:59:08,876 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:59:19,109 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:59:29,342 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:59:39,574 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 22:59:49,805 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:00:00,045 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:00:10,279 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:00:20,514 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:00:30,776 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:00:41,015 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:00:51,246 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:01:01,476 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:01:11,711 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:01:21,941 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:01:32,177 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:01:42,409 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:01:52,644 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:02:02,923 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:02:13,172 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:02:23,403 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:02:33,634 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:02:43,871 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:08:05,140 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 23:08:05,157 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:08:05,157 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:08:05,172 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 23:08:05,184 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:08:05,184 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:08:05,184 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 23:08:05,199 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 23:08:05,200 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 23:08:06,208 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 23:08:06,435 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 23:08:06,437 [INFO] telegram.ext.Application: Application started
-2025-12-18 23:08:12,557 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:12] "GET / HTTP/1.1" 200 -
-2025-12-18 23:08:12,607 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:12,607 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:12] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:12,616 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:12] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:12,618 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:12] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:13,881 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:13] "GET / HTTP/1.1" 200 -
-2025-12-18 23:08:13,898 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:13,899 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:13] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:13,901 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:13] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:13,902 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:13] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:13,944 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:13] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:08:17,103 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:08:22,356 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:08:22,369 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:22,374 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:22,375 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:22,375 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:22,756 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:08:22,772 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:22,773 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:22,774 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:22] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:25,753 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:25] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:08:25,766 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:25] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:25,772 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:25] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:25,773 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:25] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:26,358 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:26] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 23:08:26,370 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:26] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:26,374 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:26] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:26,394 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:26] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:26,402 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:26] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 23:08:26,416 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 23:08:26,416 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:26] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 23:08:27,327 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:08:28,160 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:28] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:08:28,172 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:28,176 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:28] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:08:28,176 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:28] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:30,598 [INFO] backend.routes.scp_routes: Reading file1: D:\Code\iDRAC_Info\idrac_info\data\xml\R650_TY1.xml
-2025-12-18 23:08:30,598 [INFO] backend.routes.scp_routes: Reading file2: D:\Code\iDRAC_Info\idrac_info\data\xml\R6615.xml
-2025-12-18 23:08:30,598 [INFO] backend.routes.scp_routes: Content1 length: 240341, Content2 length: 249202
-2025-12-18 23:08:30,602 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:30] "GET /scp/diff?file1=R650_TY1.xml&file2=R6615.xml HTTP/1.1" 200 -
-2025-12-18 23:08:30,616 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:08:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:08:37,552 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:08:47,787 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:08:58,012 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:09:08,234 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:09:18,458 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:09:28,683 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:09:38,906 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:09:49,128 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:09:57,518 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:09:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:09:57,535 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:09:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:09:57,536 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:09:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:09:57,538 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:09:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:09:57,539 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:09:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:09:57,574 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:09:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:09:59,353 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:10:09,581 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:10:19,804 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:10:20,833 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:20] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:10:20,846 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:20] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:20,850 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:20] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:20,851 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:20] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:20,852 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:20] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:20,882 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:20] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:10:21,453 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:10:21,466 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:21,471 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:21,471 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:21,471 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:30,029 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:10:30,184 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:30] "[32mPOST /backup HTTP/1.1[0m" 302 -
-2025-12-18 23:10:30,190 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:30] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:10:30,209 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:30,212 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:30] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:30,213 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:30] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:30,214 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:30] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:32,466 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:32] "[32mPOST /backup HTTP/1.1[0m" 302 -
-2025-12-18 23:10:32,472 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:32] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:10:32,490 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:32,491 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:32] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:32,492 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:32] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:32,493 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:32] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:34,037 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:34] "[32mPOST /backup HTTP/1.1[0m" 302 -
-2025-12-18 23:10:34,042 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:34] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:10:34,058 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:34,060 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:34] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:34,061 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:34] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:34,062 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:34] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:40,254 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:10:42,766 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:42] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 23:10:42,779 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:42,783 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:42] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:42,784 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:42] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:42,797 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:42] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 23:10:42,811 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 23:10:42,812 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:42] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 23:10:47,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:47] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:10:47,730 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:47,733 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:47] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:47,737 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:47] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:49,442 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:49] "GET /edit_xml/PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-12-18 23:10:49,457 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:50,479 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:10:57,829 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:57] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:10:57,843 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:57,845 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:57] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:10:57,845 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:57] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:10:57,846 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:10:57] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:11:00,704 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:11:04,337 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:11:04] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:11:04,351 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:11:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:11:04,368 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:11:04] "GET /static/js/admin.js HTTP/1.1" 200 -
-2025-12-18 23:11:10,928 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:11:21,153 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:11:31,376 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:11:41,601 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:11:51,825 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:12:02,047 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:12:12,269 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:12:22,492 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:12:32,715 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:12:42,938 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:12:50,703 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:50] "GET / HTTP/1.1" 200 -
-2025-12-18 23:12:50,711 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:12:50,713 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:50] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:12:50,731 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:50] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:12:50,736 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:50] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:12:52,559 [INFO] app: LOGOUT: user=김강희
-2025-12-18 23:12:52,559 [INFO] app: LOGOUT: user=김강희
-2025-12-18 23:12:52,561 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:52] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-12-18 23:12:52,566 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:52] "GET /login HTTP/1.1" 200 -
-2025-12-18 23:12:52,581 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:12:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:12:53,161 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:12:53,801 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 23:13:00,811 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:13:00,811 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:13:00,850 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 23:13:00,850 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 23:13:00,851 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 23:13:00,851 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 23:13:00,852 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:00] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 23:13:00,857 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:00] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:13:00,876 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:13:00,881 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:00] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:13:00,881 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:00] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:13:00,881 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:00] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:13:02,147 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 23:13:03,384 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:13:13,606 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:13:18,291 [INFO] app: LOGOUT: user=김강희
-2025-12-18 23:13:18,291 [INFO] app: LOGOUT: user=김강희
-2025-12-18 23:13:18,292 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:18] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-12-18 23:13:18,295 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:18] "GET /login HTTP/1.1" 200 -
-2025-12-18 23:13:18,309 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:13:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:13:19,490 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 23:13:23,829 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:13:34,052 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:13:44,274 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:13:54,497 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:14:02,705 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:14:02,705 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:14:02,738 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:14:02] "[35m[1mPOST /login HTTP/1.1[0m" 500 -
-2025-12-18 23:14:02,768 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:14:02] "GET /login?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-12-18 23:14:02,777 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:14:02] "GET /login?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-12-18 23:14:02,801 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:14:02] "GET /login?__debugger__=yes&cmd=resource&f=console.png&s=z8y1LlnccjoxyH5waJCN HTTP/1.1" 200 -
-2025-12-18 23:14:02,821 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:14:02] "GET /login?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-12-18 23:14:04,720 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:14:14,645 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:14:14] "GET /login HTTP/1.1" 200 -
-2025-12-18 23:14:14,659 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:14:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:14:14,948 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:14:25,170 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:14:35,391 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:14:45,625 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:14:55,847 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:15:06,074 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:15:08,032 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:15:08,032 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:15:08,068 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 23:15:08,068 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 23:15:08,069 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 23:15:08,069 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 23:15:08,070 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:08] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 23:15:08,075 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:08] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:15:08,098 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:08,098 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:08] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:08,099 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:08] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:08,101 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:08] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:09,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 23:15:16,297 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:15:21,161 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:21] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:15:21,175 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:21,180 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:21] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:21,180 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:21] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:21,181 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:21] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:21,211 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:21] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:15:26,521 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:15:32,626 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:32] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 23:15:32,639 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:32,643 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:32] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:32,643 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:32] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:32,648 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:32] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 23:15:32,669 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 23:15:32,669 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:32] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 23:15:33,624 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:33] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:15:33,637 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:33,639 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:33] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:33,640 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:33] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:34,975 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:34] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:15:34,988 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:34,994 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:34] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:34,994 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:34] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:34,995 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:34] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:35,716 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:35] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:15:35,728 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:35,732 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:35] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:35,732 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:35] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:36,746 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:15:39,085 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:15:39,098 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:39,102 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:39,102 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:39,677 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "GET /jobs HTTP/1.1" 200 -
-2025-12-18 23:15:39,689 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:39,692 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:39,693 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:39,714 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-18 23:15:39,728 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-18 23:15:39,728 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:39] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-18 23:15:40,037 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:40] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:15:40,050 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:15:40,053 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:15:40] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:15:46,970 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:15:57,206 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:16:07,430 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:16:17,653 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:16:21,686 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:21] "GET /admin/settings HTTP/1.1" 200 -
-2025-12-18 23:16:21,704 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:21] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:16:21,707 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:21] "GET /static/css/admin_settings.css HTTP/1.1" 200 -
-2025-12-18 23:16:27,877 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:16:27,987 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:27] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:16:28,002 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:16:28,003 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:28] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:16:32,120 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:32] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:16:32,133 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:32] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:16:32,136 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:32] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:16:32,137 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:16:32] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:16:38,098 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:16:48,320 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:16:58,542 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:17:08,767 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:17:18,996 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:17:29,219 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:17:36,252 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:36] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:17:36,266 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:17:37,873 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:37] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:17:37,886 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:17:37,887 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:37] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:17:37,893 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:37] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:17:39,178 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:39] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:17:39,193 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:17:39,195 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:39] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:17:39,195 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:39] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:17:39,196 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:17:39] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:17:39,442 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:17:49,665 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:17:59,894 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:18:10,118 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:18:20,341 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:18:30,563 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:18:40,786 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:18:51,009 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:19:01,231 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:19:09,458 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:09] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:19:09,475 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:19:09,477 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:09] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:19:09,479 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:09] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:19:09,480 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:09] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:19:09,509 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:09] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:19:10,775 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:10] "[35m[1mGET /admin HTTP/1.1[0m" 500 -
-2025-12-18 23:19:10,789 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:10] "GET /admin?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-12-18 23:19:10,791 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:10] "GET /admin?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-12-18 23:19:10,799 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:10] "GET /admin?__debugger__=yes&cmd=resource&f=console.png&s=z8y1LlnccjoxyH5waJCN HTTP/1.1" 200 -
-2025-12-18 23:19:10,820 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:10] "GET /admin?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-12-18 23:19:11,458 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:19:21,683 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:19:23,739 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 23:19:23,756 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:19:23,756 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:19:23,772 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 23:19:23,783 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:19:23,783 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:19:23,784 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 23:19:23,801 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 23:19:23,801 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 23:19:24,636 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:24] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:19:24,692 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:24] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:19:24,693 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:24] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:19:24,755 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:24] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:19:24,820 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getMe "HTTP/1.1 200 OK"
-2025-12-18 23:19:25,049 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/deleteWebhook "HTTP/1.1 200 OK"
-2025-12-18 23:19:25,050 [INFO] telegram.ext.Application: Application started
-2025-12-18 23:19:34,893 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:34] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:19:34,908 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:19:35,744 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:19:41,720 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:41] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:19:41,733 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:19:44,218 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:44] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:19:44,231 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:19:45,202 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:45] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:19:45,216 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:19:45,218 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:19:45] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:19:45,973 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:19:56,203 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:20:06,435 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:20:16,668 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:20:26,898 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:20:37,128 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:20:47,360 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:20:53,972 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:53] "GET /admin/settings HTTP/1.1" 200 -
-2025-12-18 23:20:53,990 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:53] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:20:53,993 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:53] "[36mGET /static/css/admin_settings.css HTTP/1.1[0m" 304 -
-2025-12-18 23:20:56,139 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:56] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:20:56,155 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:20:56,156 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:56] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:20:57,591 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:20:57,849 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:57] "GET /admin/settings HTTP/1.1" 200 -
-2025-12-18 23:20:57,864 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:20:57,865 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:57] "[36mGET /static/css/admin_settings.css HTTP/1.1[0m" 304 -
-2025-12-18 23:20:58,937 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:58] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:20:58,951 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:58] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:20:58,953 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:20:58] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:21:07,823 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:21:18,054 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:21:28,288 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:21:38,519 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:21:48,748 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:21:51,772 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:51] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:21:51,787 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:21:51,787 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:51] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:21:51,812 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:21:52,441 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:21:52,453 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:21:52,456 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:21:52,478 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:21:52,616 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:21:52,628 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:21:52,630 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:21:52,652 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:21:52] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:21:58,978 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:22:09,209 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:22:19,443 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:22:29,678 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:22:39,922 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:22:50,151 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:23:00,119 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:23:00] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:23:00,136 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:23:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:23:00,384 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:23:10,614 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:23:20,845 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:23:29,976 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:23:29] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:23:29,990 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:23:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:23:29,990 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:23:29] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:23:31,074 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:23:41,305 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:23:51,536 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:24:00,612 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:00] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:24:00,626 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:24:00,627 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:00] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:24:00,654 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:00] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:24:01,765 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:24:11,998 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:24:13,364 [INFO] app: LOGOUT: user=김강희
-2025-12-18 23:24:13,364 [INFO] app: LOGOUT: user=김강희
-2025-12-18 23:24:13,365 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:13] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-12-18 23:24:13,370 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:13] "GET /login HTTP/1.1" 200 -
-2025-12-18 23:24:13,384 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:24:14,591 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 23:24:22,227 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:24:32,458 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:24:42,689 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:24:52,921 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:24:59,060 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:59] "GET /register HTTP/1.1" 200 -
-2025-12-18 23:24:59,075 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:24:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:25:03,154 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:25:13,385 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:25:15,927 [INFO] app: REGISTER: form errors={'password': ['비밀번호에 대문자가 1자 이상 포함되어야 합니다.']}
-2025-12-18 23:25:15,927 [INFO] app: REGISTER: form errors={'password': ['비밀번호에 대문자가 1자 이상 포함되어야 합니다.']}
-2025-12-18 23:25:15,932 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:25:15] "POST /register HTTP/1.1" 200 -
-2025-12-18 23:25:15,951 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:25:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:25:23,618 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:25:33,851 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:25:44,081 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:25:54,203 [INFO] app: REGISTER: form errors={'password': ['비밀번호에 소문자가 1자 이상 포함되어야 합니다.']}
-2025-12-18 23:25:54,203 [INFO] app: REGISTER: form errors={'password': ['비밀번호에 소문자가 1자 이상 포함되어야 합니다.']}
-2025-12-18 23:25:54,204 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:25:54] "POST /register HTTP/1.1" 200 -
-2025-12-18 23:25:54,224 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:25:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:25:54,310 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:26:04,546 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:26:14,781 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:26:25,012 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:26:35,252 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:26:43,770 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:43] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:26:43,791 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:26:44,384 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:44] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:26:44,398 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:26:44,419 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:44] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:26:45,327 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:45] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:26:45,339 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:26:45,361 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:45] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:26:45,484 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:26:45,550 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:45] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:26:45,562 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:26:45,584 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:45] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:26:46,311 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:46] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:26:46,322 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:26:46,345 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:26:46,470 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:46] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:26:46,482 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:46] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:26:46,504 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:26:46] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:26:55,713 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:27:05,944 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:27:16,175 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:27:26,408 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:27:31,975 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:27:31] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:27:31,987 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:27:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:27:32,014 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:27:32] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:27:33,389 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:27:33] "GET /register HTTP/1.1" 200 -
-2025-12-18 23:27:33,400 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:27:33] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:27:36,638 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:27:46,869 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:27:57,106 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:28:00,941 [INFO] app: REGISTER: created id=3 email=test@test.com token=ge-h7By0SR
-2025-12-18 23:28:00,941 [INFO] app: REGISTER: created id=3 email=test@test.com token=ge-h7By0SR
-2025-12-18 23:28:00,942 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:00] "[32mPOST /register HTTP/1.1[0m" 302 -
-2025-12-18 23:28:00,945 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:00] "GET /login HTTP/1.1" 200 -
-2025-12-18 23:28:00,961 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:02,120 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 23:28:07,335 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:28:17,571 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:28:19,160 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:28:19,160 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-18 23:28:19,197 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 23:28:19,197 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-18 23:28:19,198 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 23:28:19,198 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-18 23:28:19,199 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:19] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-18 23:28:19,212 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:19] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:28:19,232 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:19] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:19,233 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:19,236 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:19] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:19,236 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:19] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:20,388 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/sendMessage "HTTP/1.1 200 OK"
-2025-12-18 23:28:23,719 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:23] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:28:23,733 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:23] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:23,733 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:23] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:27,810 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:28:28,125 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:28:29,037 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/answerCallbackQuery "HTTP/1.1 200 OK"
-2025-12-18 23:28:29,039 [INFO] telegram_bot_service: Received callback: approve_ge-h7By0SRrCO9hsSYUyLBp3KfgYYefFDWSdxaY8un4
-2025-12-18 23:28:29,464 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/editMessageText "HTTP/1.1 200 OK"
-2025-12-18 23:28:29,465 [INFO] telegram_bot_service: User 테디창 approved
-2025-12-18 23:28:31,311 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:31] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:28:31,324 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:31,327 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:31] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:31,351 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:28:36,717 [INFO] root: 🗑 삭제된 사용자: 테디창 (id=3)
-2025-12-18 23:28:36,718 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:36] "[32mGET /admin/delete/3 HTTP/1.1[0m" 302 -
-2025-12-18 23:28:36,722 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:36] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:28:36,737 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:36] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:36,738 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:36] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:38,357 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:28:40,398 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:40] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:28:40,412 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:41,961 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:41] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:28:41,973 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:41] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:41,978 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:41] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:41,979 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:41] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:41,980 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:41] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:42,541 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:42] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:28:42,558 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:42,559 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:42] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:42,560 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:42] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:44,332 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:44] "GET /edit_xml/PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-12-18 23:28:44,347 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:48,589 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:28:54,761 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:54] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:28:54,776 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:54] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:54,783 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:54] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:54,784 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:54] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:56,360 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:56] "GET /index HTTP/1.1" 200 -
-2025-12-18 23:28:56,373 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:56,378 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:56] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:28:56,379 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:56] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:56,379 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:28:56] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:28:58,836 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:29:09,067 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:29:19,298 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:29:29,530 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:29:39,762 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:29:50,046 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:30:00,277 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:30:10,509 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:30:19,077 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:30:19] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:30:19,091 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:30:19] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:30:19,093 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:30:19] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:30:20,743 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:30:30,973 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:30:41,208 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:30:51,437 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:31:01,671 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:31:11,901 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:31:22,133 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:31:30,067 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:30] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:31:30,085 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:30] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:31:32,365 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:31:42,598 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:31:47,931 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:47] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:31:47,947 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:47] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:31:49,018 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:49] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:31:49,033 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:49] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:31:50,166 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:50] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:31:50,179 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:31:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:31:52,829 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:32:03,063 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:32:03,077 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:32:03] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:32:03,090 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:32:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:32:03,137 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:32:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:32:13,295 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:32:23,538 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:32:29,955 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:32:29] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:32:29,969 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:32:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:32:33,768 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:32:37,906 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:32:37] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:32:37,919 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:32:37] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:32:43,998 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:32:54,228 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:33:02,985 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:33:02] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:33:02,998 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:33:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:33:03,063 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:33:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:33:04,461 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:33:14,691 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:33:24,922 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:33:35,151 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:33:45,382 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:33:55,612 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:34:05,846 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:34:07,093 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:34:07] "GET /home/ HTTP/1.1" 200 -
-2025-12-18 23:34:07,111 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:34:07] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:34:09,154 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:34:09] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:34:09,171 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:34:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:34:09,172 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:34:09] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:34:09,988 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:34:09] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:34:10,001 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:34:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:34:16,079 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:34:26,311 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:34:36,542 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:34:46,773 [INFO] httpx: HTTP Request: POST https://api.telegram.org/bot6719918880:AAHC1on-KlzH0G3ylJP57p-q5qMyorFUGZo/getUpdates "HTTP/1.1 200 OK"
-2025-12-18 23:34:58,614 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 23:34:58,632 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:34:58,632 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:34:58,648 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 23:34:58,661 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:34:58,661 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 23:34:58,661 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:34:58,674 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 23:34:58,674 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 23:35:03,564 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:03] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:35:03,607 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:35:03,660 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:35:04,419 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:35:04,434 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:35:04,498 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:35:05,073 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:05] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:35:05,085 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:35:05,151 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:05] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:35:05,554 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:05] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:35:05,567 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:35:05,633 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:05] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:35:16,974 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:16] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:35:16,988 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:35:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:36:38,929 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:38] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:36:38,943 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:36:39,007 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:36:39,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:39] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:36:39,904 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:36:39,975 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:39] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:36:40,047 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:40] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:36:40,060 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:36:40,119 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:36:42,754 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:42] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:36:42,769 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:42] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:36:49,170 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 23:36:49,187 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:36:49,187 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:36:49,201 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 23:36:49,213 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:36:49,213 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:36:49,213 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 23:36:49,226 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 23:36:49,226 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 23:36:51,063 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:51] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:36:51,099 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:36:51,146 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:36:51] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:39:03,273 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:03] "[35m[1mGET /admin/logs HTTP/1.1[0m" 500 -
-2025-12-18 23:39:03,286 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:03] "GET /admin/logs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1" 200 -
-2025-12-18 23:39:03,288 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:03] "GET /admin/logs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1" 200 -
-2025-12-18 23:39:03,297 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:03] "GET /admin/logs?__debugger__=yes&cmd=resource&f=console.png&s=fJoQEPfpzFL01L1aviYw HTTP/1.1" 200 -
-2025-12-18 23:39:03,317 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:03] "GET /admin/logs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1" 200 -
-2025-12-18 23:39:04,277 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:04] "[35m[1mGET /admin/logs HTTP/1.1[0m" 500 -
-2025-12-18 23:39:04,291 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:04] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:39:04,292 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:04] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-12-18 23:39:04,300 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:04] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png&s=fJoQEPfpzFL01L1aviYw HTTP/1.1[0m" 304 -
-2025-12-18 23:39:04,325 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:04] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-12-18 23:39:07,447 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 23:39:07,464 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:39:07,464 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:39:07,480 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 23:39:07,490 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:39:07,491 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 23:39:07,490 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:39:07,505 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 23:39:07,505 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 23:39:08,654 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:08] "[35m[1mGET /admin/logs HTTP/1.1[0m" 500 -
-2025-12-18 23:39:08,700 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:08] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:39:08,701 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:08] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-12-18 23:39:08,710 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:08] "GET /admin/logs?__debugger__=yes&cmd=resource&f=console.png&s=wscT5i6bomkg0qmNuICg HTTP/1.1" 200 -
-2025-12-18 23:39:08,728 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:08] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,256 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[35m[1mGET /admin/logs HTTP/1.1[0m" 500 -
-2025-12-18 23:39:09,268 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,269 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,280 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png&s=wscT5i6bomkg0qmNuICg HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,301 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,888 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[35m[1mGET /admin/logs HTTP/1.1[0m" 500 -
-2025-12-18 23:39:09,899 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,901 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,911 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png&s=wscT5i6bomkg0qmNuICg HTTP/1.1[0m" 304 -
-2025-12-18 23:39:09,938 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:09] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-12-18 23:39:10,694 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:10] "[35m[1mGET /admin/logs HTTP/1.1[0m" 500 -
-2025-12-18 23:39:10,706 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:10] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:39:10,708 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:10] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-12-18 23:39:10,716 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:10] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png&s=wscT5i6bomkg0qmNuICg HTTP/1.1[0m" 304 -
-2025-12-18 23:39:10,737 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:10] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png HTTP/1.1[0m" 304 -
-2025-12-18 23:39:11,977 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:11] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:39:11,992 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:39:11,993 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:11] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:39:12,012 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:12] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:39:13,005 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:13] "[35m[1mGET /admin/logs HTTP/1.1[0m" 500 -
-2025-12-18 23:39:13,018 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:13] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:39:13,020 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:13] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=debugger.js HTTP/1.1[0m" 304 -
-2025-12-18 23:39:13,029 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:39:13] "[36mGET /admin/logs?__debugger__=yes&cmd=resource&f=console.png&s=wscT5i6bomkg0qmNuICg HTTP/1.1[0m" 304 -
-2025-12-18 23:40:15,190 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:40:15] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:40:15,205 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:40:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:41:12,373 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:41:12] "GET /admin/settings HTTP/1.1" 200 -
-2025-12-18 23:41:12,389 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:41:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:41:12,389 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:41:12] "[36mGET /static/css/admin_settings.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:13,188 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:13] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:42:13,202 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:13] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:14,772 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:14] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:42:14,785 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:14] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:14,849 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:14] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:42:15,412 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:15] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:42:15,426 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:15,490 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:15] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:42:15,878 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:15] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:42:15,890 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:15] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:15,957 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:15] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:42:16,310 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:16] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:42:16,322 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:16] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:16,387 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:16] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:42:39,109 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-18 23:42:39,126 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:42:39,126 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-18 23:42:39,141 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-18 23:42:39,153 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:42:39,153 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-18 23:42:39,153 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-18 23:42:39,168 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-18 23:42:39,168 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-18 23:42:39,968 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:39] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:42:40,005 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:40,060 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:42:40,699 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:40] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:42:40,712 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:42:40,779 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:42:40] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:43:55,444 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:55] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:43:55,460 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:43:55,462 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:55] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:43:56,056 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:56] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:43:56,070 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:43:56,796 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:56] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:43:56,809 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:56] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:43:56,877 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:56] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:43:57,286 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:43:57,299 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:43:57,366 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:43:57,578 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:43:57,591 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:43:57,661 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:43:57,819 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:43:57,833 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:43:57,897 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:43:57] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:44:02,839 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:02] "GET /xml_management HTTP/1.1" 200 -
-2025-12-18 23:44:02,852 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:44:02,856 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:02] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-18 23:44:02,857 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:02] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-18 23:44:04,398 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:04] "GET /edit_xml/PO-20250826-0158%20_가산3_XE9680_384EA.xml HTTP/1.1" 200 -
-2025-12-18 23:44:04,413 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:44:55,920 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:55] "GET / HTTP/1.1" 200 -
-2025-12-18 23:44:55,927 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:55] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:44:55,930 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:55] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-18 23:44:55,949 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:55] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-18 23:44:55,952 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:55] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-18 23:44:59,019 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:59] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:44:59,035 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:59] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:44:59,036 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:44:59] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:45:00,577 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:45:00] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:45:00,591 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:45:00] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:45:02,553 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:45:02] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:45:02,566 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:45:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:01,789 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:01] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:01,804 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:01] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:01,871 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:01] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:02,386 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:02] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:02,400 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:02,465 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:02] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:03,003 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:03,017 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:03,086 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:03,455 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:03,467 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:03,539 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:03,869 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:03,880 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:03,954 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:03] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,082 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:04,096 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,165 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,251 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:04,264 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,336 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,386 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:04,399 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,469 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,538 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:04,552 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,623 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,676 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:04,688 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,756 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,802 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:04,814 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,892 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:04,970 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:04,985 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:05,053 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:05] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:05,144 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:05] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:05,158 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:05,231 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:05] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:46:05,255 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:05] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:05,281 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:05] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:18,502 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:18] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:46:18,514 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:18] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:46:18,612 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:46:18] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-18 23:47:04,870 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:04] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:47:04,888 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:04] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:47:06,939 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:06] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:47:06,956 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:06] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:47:08,155 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:08] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:47:08,170 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:47:35,643 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:35] "GET /admin HTTP/1.1" 200 -
-2025-12-18 23:47:35,656 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:35] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-18 23:47:35,657 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:35] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-18 23:47:38,028 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:38] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-18 23:47:38,043 [INFO] werkzeug: 127.0.0.1 - - [18/Dec/2025 23:47:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
diff --git a/data/logs/2025-12-19.log b/data/logs/2025-12-19.log
deleted file mode 100644
index f226be3..0000000
--- a/data/logs/2025-12-19.log
+++ /dev/null
@@ -1,7623 +0,0 @@
-2025-12-19 15:19:48,316 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 15:19:48,340 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 15:19:48,340 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 15:19:48,411 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 15:19:48,427 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 15:19:48,427 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 15:19:48,427 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 15:19:48,480 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-19 15:19:48,481 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-19 15:19:50,686 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:19:50] "[32mGET / HTTP/1.1[0m" 302 -
-2025-12-19 15:19:50,709 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:19:50] "GET /login?next=/ HTTP/1.1" 200 -
-2025-12-19 15:19:50,741 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:19:50] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:20:02,381 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-19 15:20:02,381 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-19 15:20:02,436 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-19 15:20:02,436 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-19 15:20:02,437 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-19 15:20:02,437 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-19 15:20:02,438 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:20:02] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-19 15:20:02,453 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:20:02] "GET /index HTTP/1.1" 200 -
-2025-12-19 15:20:02,473 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:20:02] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:20:02,475 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:20:02] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 15:20:02,476 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:20:02] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 15:20:02,485 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:20:02] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 15:21:28,573 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:28] "GET /xml_management HTTP/1.1" 200 -
-2025-12-19 15:21:28,591 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:28] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:21:28,595 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:28] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-19 15:21:28,614 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:28] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-19 15:21:43,014 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:43] "GET /jobs HTTP/1.1" 200 -
-2025-12-19 15:21:43,030 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:21:43,032 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:43] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-19 15:21:43,051 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:43] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-19 15:21:43,059 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:43] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-19 15:21:43,071 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-19 15:21:43,071 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:43] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-19 15:21:44,554 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:44] "GET /admin HTTP/1.1" 200 -
-2025-12-19 15:21:44,566 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:44] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:21:44,586 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:44] "[36mGET /static/js/admin.js HTTP/1.1[0m" 304 -
-2025-12-19 15:21:45,429 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:45] "GET /admin/logs HTTP/1.1" 200 -
-2025-12-19 15:21:45,441 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:21:45] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:22:08,271 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:08] "GET /jobs HTTP/1.1" 200 -
-2025-12-19 15:22:08,286 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:08] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:22:08,295 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:08] "[36mGET /static/js/jobs.js HTTP/1.1[0m" 304 -
-2025-12-19 15:22:08,296 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:08] "[36mGET /static/css/jobs.css HTTP/1.1[0m" 304 -
-2025-12-19 15:22:08,316 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:08] "GET /jobs/config HTTP/1.1" 200 -
-2025-12-19 15:22:08,323 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2025-12-19 15:22:08,323 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:08] "GET /jobs/iplist HTTP/1.1" 200 -
-2025-12-19 15:22:09,637 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:09] "GET /home/ HTTP/1.1" 200 -
-2025-12-19 15:22:09,649 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:22:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:24:48,464 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:24:48] "GET /home/ HTTP/1.1" 200 -
-2025-12-19 15:24:48,483 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:24:48] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:24:51,690 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:24:51] "GET /index HTTP/1.1" 200 -
-2025-12-19 15:24:51,705 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:24:51] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 15:24:51,707 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:24:51] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 15:24:51,709 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:24:51] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 15:24:51,710 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 15:24:51] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:07:36,600 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 16:07:36,619 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 16:07:36,619 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 16:07:36,637 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 16:07:36,648 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 16:07:36,649 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 16:07:36,648 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 16:07:36,663 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-19 16:07:36,663 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-19 16:07:40,716 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:07:40] "[32mGET / HTTP/1.1[0m" 302 -
-2025-12-19 16:07:40,727 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:07:40] "GET /login?next=/ HTTP/1.1" 200 -
-2025-12-19 16:07:40,760 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:07:40] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:08:34,893 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-19 16:08:34,893 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-19 16:08:34,936 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-19 16:08:34,936 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-19 16:08:34,937 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-19 16:08:34,937 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-19 16:08:34,938 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:34] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-19 16:08:34,957 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:34] "GET /index HTTP/1.1" 200 -
-2025-12-19 16:08:34,982 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:34] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:08:34,985 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:34] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 16:08:34,985 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:34] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 16:08:34,986 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:34] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:08:38,511 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:38] "GET /index HTTP/1.1" 200 -
-2025-12-19 16:08:38,533 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:38] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:08:38,535 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:38] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 16:08:38,536 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:38] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 16:08:38,537 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:38] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:08:39,084 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:39] "GET /xml_management HTTP/1.1" 200 -
-2025-12-19 16:08:39,099 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:08:39,104 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:39] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-19 16:08:39,104 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:39] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-19 16:08:39,822 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:39] "GET /home/ HTTP/1.1" 200 -
-2025-12-19 16:08:39,836 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:08:39] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:12:26,911 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 16:12:26,930 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 16:12:26,930 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 16:12:26,946 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 16:12:26,958 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 16:12:26,958 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 16:12:26,959 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 16:12:26,973 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-19 16:12:26,973 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-19 16:15:39,017 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 16:15:39,036 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 16:15:39,052 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 16:15:39,064 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 16:15:39,064 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 16:15:39,078 [INFO] werkzeug: [31m[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.[0m
- * Running on all addresses (0.0.0.0)
- * Running on http://127.0.0.1:5000
- * Running on http://192.168.0.20:5000
-2025-12-19 16:15:39,078 [INFO] werkzeug: [33mPress CTRL+C to quit[0m
-2025-12-19 16:15:43,687 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:15:43] "GET / HTTP/1.1" 200 -
-2025-12-19 16:15:43,724 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:15:43] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:15:43,737 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:15:43] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 16:15:43,745 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:15:43] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 16:15:43,745 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:15:43] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:16:08,984 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:08] "GET /index HTTP/1.1" 200 -
-2025-12-19 16:16:09,002 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:09] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:09,004 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:09] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:09,006 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:09] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 16:16:09,007 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:09] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:16:10,979 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:10] "GET /index HTTP/1.1" 200 -
-2025-12-19 16:16:10,994 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:10] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:10,997 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:10] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:10,999 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:10] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 16:16:10,999 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:10] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:16:11,431 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:11] "GET /xml_management HTTP/1.1" 200 -
-2025-12-19 16:16:11,445 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:11] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:11,449 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:11] "[36mGET /static/css/scp.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:11,459 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:11] "[36mGET /static/js/scp.js HTTP/1.1[0m" 304 -
-2025-12-19 16:16:12,393 [INFO] app: LOGOUT: user=김강희
-2025-12-19 16:16:12,394 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:12] "[32mGET /logout HTTP/1.1[0m" 302 -
-2025-12-19 16:16:12,400 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:12] "GET /login HTTP/1.1" 200 -
-2025-12-19 16:16:12,412 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:12] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:29,725 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-19 16:16:29,765 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-19 16:16:29,766 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-19 16:16:29,767 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:29] "[32mPOST /login HTTP/1.1[0m" 302 -
-2025-12-19 16:16:29,773 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:29] "GET /index HTTP/1.1" 200 -
-2025-12-19 16:16:29,794 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:29] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:29,795 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:29] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 16:16:29,796 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:29] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 16:16:29,797 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:16:29] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:17:31,903 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:17:31] "GET /index HTTP/1.1" 200 -
-2025-12-19 16:17:31,920 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:17:31] "[36mGET /static/style.css HTTP/1.1[0m" 304 -
-2025-12-19 16:17:31,926 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:17:31] "[36mGET /static/js/index.js HTTP/1.1[0m" 304 -
-2025-12-19 16:17:31,926 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:17:31] "[36mGET /static/css/index.css HTTP/1.1[0m" 304 -
-2025-12-19 16:17:31,927 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:17:31] "[36mGET /static/script.js HTTP/1.1[0m" 304 -
-2025-12-19 16:17:31,964 [INFO] werkzeug: 127.0.0.1 - - [19/Dec/2025 16:17:31] "[36mGET /static/favicon.ico HTTP/1.1[0m" 304 -
-2025-12-19 16:17:34,442 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 16:17:34,459 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 16:17:34,474 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 16:17:34,486 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 16:17:34,486 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 16:17:53,229 [INFO] root: [AJAX] 작업 시작: 1766128673.2281537, script: TYPE8A-MAC_info.sh
-2025-12-19 16:17:53,235 [ERROR] root: 10.10.0.2 처리 중 오류 발생: name 'shutil' is not defined
-2025-12-19 16:31:38,065 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 16:31:38,083 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 16:31:38,100 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 16:31:38,112 [INFO] app: 🤖 텔레그램 봇 폴링 스레드 생성됨 (중복 방지 플래그 적용)
-2025-12-19 16:31:38,112 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 17:10:07,541 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:10:13,127 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:10:19,763 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:10:27,958 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:10:35,510 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:10:47,577 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:10:58,100 [INFO] telegram_bot_service: Received callback: approve_aH9ZxP5WKJKGLBGLcRJkOEtR4KtxtRkvxwF8UT3qQZI
-2025-12-19 17:11:05,052 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:11:22,597 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:11:46,294 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:12:19,339 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:12:57,878 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:13:35,788 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:14:13,574 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:14:51,281 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:15:24,827 [INFO] telegram_bot_service: Received callback: approve_Q2yAb3A0zLnTf_t9BikQ0yPbvk0Jf4yQE0uLtELo1L0
-2025-12-19 17:15:29,057 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:16:06,782 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:16:44,594 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:17:22,410 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:18:00,165 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:18:06,293 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:18:12,373 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:18:19,728 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:18:29,024 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:18:38,699 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:18:53,403 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:19:51,709 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:19:57,186 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:20:03,674 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:20:11,662 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:20:18,883 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:20:30,448 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:20:47,073 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:21:03,396 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:21:25,415 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:21:55,978 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:22:30,902 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:23:05,830 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:23:40,764 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:24:15,679 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:24:50,610 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:25:25,536 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:26:00,464 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:26:35,397 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:27:10,317 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:27:45,249 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:28:20,184 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:28:55,116 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:29:30,055 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:30:05,004 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:30:39,933 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:31:14,852 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:31:49,782 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:32:24,699 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:32:59,619 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:33:34,547 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:34:09,463 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:34:44,383 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:35:19,938 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:35:54,903 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:36:29,874 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:37:04,860 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:37:39,830 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:38:14,822 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:38:49,817 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:39:24,810 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:39:59,778 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:40:34,748 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:41:09,731 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:41:44,697 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:42:19,679 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:42:54,669 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:43:29,625 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:44:04,596 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:44:39,580 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:45:14,568 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:45:49,528 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:46:24,520 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:46:59,494 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:47:34,466 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:48:09,447 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:48:44,421 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:49:19,376 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:49:55,479 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:50:30,405 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:51:05,327 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:51:40,251 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:52:15,191 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:52:50,126 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:53:25,072 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:54:00,011 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:54:34,937 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:55:09,870 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:55:44,797 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:56:19,744 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:56:54,688 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:57:29,611 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:58:04,550 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:58:39,480 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:59:14,410 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 17:59:49,347 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:00:24,281 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:00:59,223 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:01:34,166 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:02:09,096 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:02:44,027 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:03:18,953 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:03:53,886 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:04:28,837 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:05:03,767 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:05:38,723 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:06:10,261 [INFO] telegram_bot_service: Received callback: approve_Ur6e_GGm3Llj24HlQa16EfQTq3VHD6B0grKsia-dWKo
-2025-12-19 18:06:13,874 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:06:19,845 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:06:27,071 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:06:33,184 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:06:42,610 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:06:56,856 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:07:17,466 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:07:39,615 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:08:10,341 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:08:45,415 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:09:20,584 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:09:55,674 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:10:30,942 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:11:06,037 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:11:41,104 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:12:16,154 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:12:51,267 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:13:26,396 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:14:01,467 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:14:36,556 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:16:01,873 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:16:07,357 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:16:13,843 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:16:21,831 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:16:29,074 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:16:40,706 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:16:57,369 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:17:13,698 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:17:35,704 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 18:20:08,243 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 18:20:08,265 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 18:20:08,282 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 18:20:08,293 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2025-12-19 18:20:08,293 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2025-12-19 18:20:08,295 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 18:20:14,470 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 19:17:20,835 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2025-12-19 19:17:20,855 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2025-12-19 19:17:20,873 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2025-12-19 19:17:20,883 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2025-12-19 19:17:20,884 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2025-12-19 19:17:20,885 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2025-12-19 19:17:27,096 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 19:17:33,085 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2025-12-19 19:17:33,965 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2025-12-19 19:17:34,003 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2025-12-19 19:17:34,005 [INFO] app: LOGIN: SUCCESS → redirect
-2025-12-19 19:17:40,314 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
diff --git a/data/logs/2026-01-13.log b/data/logs/2026-01-13.log
deleted file mode 100644
index 1fe7f34..0000000
--- a/data/logs/2026-01-13.log
+++ /dev/null
@@ -1,3508 +0,0 @@
-2026-01-13 19:54:24,926 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-13 19:54:24,947 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-13 19:54:25,034 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-13 19:54:25,048 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-13 19:54:25,048 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-13 19:54:25,050 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-13 19:54:26,491 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-13 19:54:31,475 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 19:54:37,473 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 19:54:44,726 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 19:54:50,843 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 19:55:00,258 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 19:55:14,458 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 19:55:32,753 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-13 19:55:32,793 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-13 19:55:32,795 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-13 19:55:35,032 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 19:59:52,103 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-13 19:59:52,119 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-13 19:59:52,135 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-13 19:59:52,148 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-13 19:59:52,148 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-13 19:59:52,150 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-13 19:59:53,470 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-13 19:59:58,439 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:00:04,428 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:00:11,661 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:00:17,770 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:00:27,193 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:00:41,218 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-13 20:00:41,232 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-13 20:00:41,246 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-13 20:00:41,260 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-13 20:00:41,260 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-13 20:00:41,262 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-13 20:00:42,610 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-13 20:00:58,497 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:01:20,633 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:01:51,281 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:02:26,441 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:03:01,596 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:03:36,689 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:04:11,815 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:04:46,860 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:05:21,896 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:05:56,958 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:06:31,984 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:07:07,043 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:07:42,138 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:08:17,197 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:08:52,212 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:09:27,305 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:10:02,433 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:10:37,465 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:11:12,579 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:11:47,738 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:12:22,751 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:12:57,804 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:13:32,936 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:14:08,073 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:14:43,089 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:15:18,141 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:15:53,658 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:16:28,737 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:17:03,775 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:17:38,837 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:18:14,272 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:18:49,705 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:19:24,815 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:19:59,975 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:20:34,998 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:21:10,170 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:21:45,194 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:22:20,264 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:22:56,082 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:23:32,094 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:24:12,400 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:24:17,896 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:24:24,391 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:24:32,393 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:24:39,629 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:24:51,527 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:25:26,387 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:25:48,912 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:26:19,619 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:26:55,103 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:27:30,298 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:28:06,558 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:28:41,640 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:29:16,841 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-13 20:29:52,682 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
diff --git a/data/logs/2026-01-15.log b/data/logs/2026-01-15.log
deleted file mode 100644
index cb6b7a7..0000000
--- a/data/logs/2026-01-15.log
+++ /dev/null
@@ -1,7751 +0,0 @@
-2026-01-15 14:49:44,050 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-15 14:49:44,071 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-15 14:49:44,151 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-15 14:49:44,165 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-15 14:49:44,165 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-15 14:49:44,167 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-15 14:49:45,498 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-15 14:49:50,488 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 14:49:56,480 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 14:50:00,839 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-15 14:50:00,878 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-15 14:50:00,879 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-15 14:50:03,728 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 14:50:09,854 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:26:43,422 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-15 18:26:43,444 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-15 18:26:43,529 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-15 18:26:43,542 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-15 18:26:43,542 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-15 18:26:43,544 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-15 18:26:44,909 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-15 18:26:49,906 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:26:55,900 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:26:56,269 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-15 18:26:56,308 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-15 18:26:56,309 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-15 18:27:03,156 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:27:09,486 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:27:18,947 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:27:33,088 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:27:53,612 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:28:15,712 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:28:46,372 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:29:21,392 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:29:56,399 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:30:31,425 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:31:06,470 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:31:38,760 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-15 18:31:38,775 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-15 18:31:38,790 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-15 18:31:38,802 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-15 18:31:38,803 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-15 18:31:38,805 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-15 18:31:40,169 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-15 18:31:41,486 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:32:16,520 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:32:51,540 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:33:26,548 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:34:01,550 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:34:36,569 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:35:11,599 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:35:46,612 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:36:21,652 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:36:56,671 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:37:31,665 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:38:06,679 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:38:41,697 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:38:48,532 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-15 18:38:48,547 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-15 18:38:48,563 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-15 18:38:48,576 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-15 18:38:48,577 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-15 18:38:48,578 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-15 18:38:49,902 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-15 18:39:16,704 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:39:51,715 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:40:26,773 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:41:01,817 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:41:37,592 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-15 18:41:37,607 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-15 18:41:37,621 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-15 18:41:37,635 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-15 18:41:37,635 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-15 18:41:37,637 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-15 18:41:38,995 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-15 18:42:13,519 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:42:48,526 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:43:23,517 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:43:58,533 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:44:33,541 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:45:08,582 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:45:43,590 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:46:18,617 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:46:53,644 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:47:28,614 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:48:03,595 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:48:38,577 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:49:13,585 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:49:37,394 [INFO] root: GUID 슬롯 우선순위: 31,32,33,34,35,36,37,38,39,40
-2026-01-15 18:49:37,905 [INFO] root: GUID 리스트 스크립트 실행 결과: [INFO] 사용자 지정 슬롯 우선순위: ['31', '32', '33', '34', '35', '36', '37', '38', '39', '40']
-엑셀 파일이 생성되었습니다: D:\Code\iDRAC_Info\idrac_info\data\idrac_info\XE9680_GUID.xlsx
-
-2026-01-15 18:49:48,617 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:50:23,616 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:50:58,621 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:51:33,623 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:52:08,645 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:52:43,682 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:53:18,715 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:53:53,760 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:54:28,777 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:55:03,792 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:55:38,816 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:56:05,354 [INFO] root: GUID 슬롯 우선순위: 31,32,33,34,35,36,37,38,39,40
-2026-01-15 18:56:05,693 [INFO] root: GUID 리스트 스크립트 실행 결과: [INFO] 사용자 지정 슬롯 우선순위: ['31', '32', '33', '34', '35', '36', '37', '38', '39', '40']
-엑셀 파일이 생성되었습니다: D:\Code\iDRAC_Info\idrac_info\data\idrac_info\XE9680_GUID.xlsx
-
-2026-01-15 18:56:13,862 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:56:49,414 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:57:24,430 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:57:59,454 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:58:34,459 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:59:09,468 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 18:59:44,472 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:00:19,517 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:00:54,530 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:01:29,614 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:02:04,622 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:02:39,676 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:03:14,687 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:03:49,727 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:04:24,714 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:04:53,919 [INFO] root: 파일 삭제됨: XE9680_GUID.xlsx
-2026-01-15 19:04:59,728 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:05:04,121 [INFO] root: GUID 슬롯 우선순위: 31,32,33,34,35,36,37,38,39,40
-2026-01-15 19:05:04,477 [INFO] root: GUID 리스트 스크립트 실행 결과: [INFO] 사용자 지정 슬롯 우선순위: ['31', '32', '33', '34', '35', '36', '37', '38', '39', '40']
-엑셀 파일이 생성되었습니다: D:\Code\iDRAC_Info\idrac_info\data\idrac_info\XE9680_GUID.xlsx
-
-2026-01-15 19:05:34,742 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:05:52,217 [INFO] root: 파일 삭제됨: XE9680_GUID.xlsx
-2026-01-15 19:06:09,772 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:06:44,797 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:07:19,815 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:07:55,024 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:08:30,048 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:09:05,088 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:09:40,092 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:10:15,115 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:10:50,123 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:11:25,626 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:12:00,632 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:12:35,659 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:13:10,665 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:13:45,679 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:14:20,699 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:14:55,750 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:15:30,763 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:16:05,790 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:16:40,833 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:17:15,869 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:17:50,936 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:18:25,948 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:19:00,976 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:19:35,980 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:20:10,972 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:20:45,978 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:21:21,012 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:21:56,001 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:22:31,015 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:23:06,059 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:23:41,071 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:24:16,071 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:24:51,097 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:25:26,123 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:26:01,658 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:26:36,671 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:27:11,690 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:27:46,739 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:28:21,763 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:28:56,784 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:29:31,836 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:30:06,847 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:30:41,856 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:31:16,908 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:31:51,937 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:32:26,945 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:33:01,973 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:33:37,002 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:34:12,038 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:34:47,033 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:35:22,058 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:35:57,098 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:36:32,089 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:37:07,110 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:37:42,144 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:38:17,164 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:38:52,204 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:39:27,247 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:40:02,275 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:40:37,801 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:41:12,831 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:41:47,885 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:42:22,904 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:43:30,966 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:44:05,982 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:44:41,009 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:45:16,037 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:45:51,045 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:46:26,057 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:47:01,103 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:47:36,129 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:48:11,160 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-15 19:48:46,187 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
diff --git a/data/logs/2026-01-16.log b/data/logs/2026-01-16.log
deleted file mode 100644
index ce64ef9..0000000
--- a/data/logs/2026-01-16.log
+++ /dev/null
@@ -1,4872 +0,0 @@
-2026-01-16 17:12:04,486 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-16 17:12:04,501 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-16 17:12:04,516 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-16 17:12:04,529 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-16 17:12:04,529 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-16 17:12:04,531 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-16 17:12:05,908 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-16 17:12:10,919 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:12:16,918 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:12:17,692 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-16 17:12:17,731 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=False
-2026-01-16 17:12:22,205 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-16 17:12:22,244 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-16 17:12:22,245 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-16 17:12:24,171 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:12:30,300 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:12:39,737 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:12:53,877 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:13:08,695 [INFO] root: GUID 슬롯 우선순위: 31,32,33,34,35,36,37,38,39,40
-2026-01-16 17:13:09,170 [INFO] root: GUID 리스트 스크립트 실행 결과: [INFO] 사용자 지정 슬롯 우선순위: ['31', '32', '33', '34', '35', '36', '37', '38', '39', '40']
-엑셀 파일이 생성되었습니다: D:\Code\iDRAC_Info\idrac_info\data\idrac_info\XE9680_GUID.xlsx
-
-2026-01-16 17:13:14,385 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:13:36,472 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:14:07,128 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:14:42,148 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:15:17,153 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:15:52,172 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:16:27,179 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:17:02,219 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:17:37,246 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:18:11,335 [INFO] root: 파일 삭제됨: XE9680_GUID.xlsx
-2026-01-16 17:18:12,268 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:18:47,288 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:19:22,363 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:19:57,402 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:20:32,408 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:20:58,389 [INFO] root: 서버 리스트 스크립트 실행 결과: Length of index_list: 3
-Length of data_list: 3
-Saved: D:\Code\iDRAC_Info\idrac_info\data\idrac_info\mac_info.xlsx
-
-2026-01-16 17:21:03,175 [INFO] root: 파일 삭제됨: mac_info.xlsx
-2026-01-16 17:21:07,459 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:21:42,473 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:22:17,489 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:22:52,528 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:23:27,565 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:24:02,578 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:24:37,598 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:25:12,624 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:25:47,630 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:26:22,613 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:26:57,650 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:27:32,694 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:28:08,250 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:28:43,289 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:29:18,298 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:29:53,337 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:29:56,080 [INFO] root: [GPU] 리스트 스크립트 실행 STDOUT:
-[WARN] 파일을 찾을 수 없습니다: 1V48HG4.txt
-[WARN] 파일을 찾을 수 없습니다: 1T48HG4.txt
-[WARN] 파일을 찾을 수 없습니다: 1V48HG4.txt
-[INFO] 병합할 데이터가 없습니다.
-
-2026-01-16 17:30:28,359 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:31:03,403 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:31:38,425 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:32:13,492 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:32:48,522 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:33:23,549 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:33:58,549 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:34:33,593 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:35:08,622 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:35:43,664 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:36:18,691 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:36:53,724 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:37:28,759 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:38:03,808 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:38:38,859 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:39:13,878 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:39:48,902 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:40:23,953 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:40:59,018 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:41:34,071 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 17:42:09,102 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:19:44,791 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-16 20:19:44,811 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-16 20:19:44,898 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-16 20:19:44,912 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-16 20:19:44,912 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-16 20:19:44,914 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-16 20:19:46,268 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-16 20:19:51,245 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:19:57,254 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:20:04,498 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:20:10,611 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:20:12,057 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-16 20:20:12,097 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-16 20:20:12,099 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-16 20:20:20,051 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:20:34,244 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:20:54,706 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:21:16,833 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:21:47,493 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:22:22,508 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:22:57,509 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:23:32,519 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:24:07,532 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:24:42,572 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:25:17,620 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:25:52,695 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:26:27,734 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:27:02,765 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:28:33,710 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-16 20:28:33,725 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-16 20:28:33,739 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-16 20:28:33,753 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-16 20:28:33,753 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-16 20:28:33,755 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-16 20:28:35,126 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-16 20:28:59,097 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-16 20:28:59,111 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-16 20:28:59,126 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-16 20:28:59,138 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-16 20:28:59,138 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-16 20:28:59,140 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-16 20:29:00,477 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-16 20:29:05,482 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:29:11,512 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:29:12,752 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 20:29:13,704 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 20:29:14,514 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 20:29:16,426 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 20:29:17,296 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 20:29:18,241 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 20:29:18,793 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:29:24,968 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:29:34,413 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:29:48,569 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 20:29:50,441 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 20:29:51,956 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 20:29:53,906 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 20:29:55,196 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 20:30:06,598 [INFO] root: file_view: folder=backup date=새 폴더 filename=1V48HG4.txt | base=D:\Code\iDRAC_Info\idrac_info\data\backup | target=D:\Code\iDRAC_Info\idrac_info\data\backup\새 폴더\1V48HG4.txt
-2026-01-16 20:30:06,598 [INFO] root: file_view: folder=backup date=새 폴더 filename=1V48HG4.txt | base=D:\Code\iDRAC_Info\idrac_info\data\backup | target=D:\Code\iDRAC_Info\idrac_info\data\backup\새 폴더\1V48HG4.txt
-2026-01-16 20:30:09,055 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:17:16,512 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-16 21:17:16,529 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-16 21:17:16,546 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-16 21:17:16,559 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-16 21:17:16,559 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-16 21:17:16,561 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-16 21:17:17,989 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-16 21:17:23,106 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:17:29,135 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:17:36,419 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:17:42,585 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:17:46,702 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-16 21:17:46,740 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-16 21:17:46,742 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-16 21:17:52,061 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:17:55,531 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 21:17:56,903 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 21:17:58,028 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 21:17:58,838 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 21:17:59,648 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 21:18:00,442 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 21:18:06,285 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:18:26,829 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:18:48,975 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:18:56,746 [INFO] root: file_view: folder=backup date=새 폴더 filename=1BZ7HG4.txt | base=D:\Code\iDRAC_Info\idrac_info\data\backup | target=D:\Code\iDRAC_Info\idrac_info\data\backup\새 폴더\1BZ7HG4.txt
-2026-01-16 21:18:56,746 [INFO] root: file_view: folder=backup date=새 폴더 filename=1BZ7HG4.txt | base=D:\Code\iDRAC_Info\idrac_info\data\backup | target=D:\Code\iDRAC_Info\idrac_info\data\backup\새 폴더\1BZ7HG4.txt
-2026-01-16 21:19:04,843 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 21:19:04,859 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 21:19:04,859 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-16 21:19:19,690 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-16 21:19:25,263 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 21:19:25,264 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 21:19:25,264 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-16 21:19:54,728 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
diff --git a/data/logs/2026-01-17.log b/data/logs/2026-01-17.log
deleted file mode 100644
index 69a200c..0000000
--- a/data/logs/2026-01-17.log
+++ /dev/null
@@ -1,1291 +0,0 @@
-2026-01-17 09:13:48,315 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-17 09:13:48,336 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-17 09:13:48,418 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-17 09:13:48,431 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-17 09:13:48,432 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-17 09:13:48,433 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-17 09:13:49,768 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-17 09:13:54,765 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:14:00,770 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:14:02,092 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-17 09:14:02,131 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-17 09:14:02,132 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-17 09:14:08,017 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:14:14,150 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:14:23,568 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:14:35,044 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 09:14:35,055 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 09:14:35,055 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 09:14:36,527 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 09:14:37,690 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 09:14:37,759 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:14:38,574 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 09:14:58,207 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:15:20,289 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:15:34,666 [INFO] root: GUID 슬롯 우선순위: 31,32,33,34,35,36,37,38,39,40
-2026-01-17 09:15:35,484 [INFO] root: GUID 리스트 스크립트 실행 결과: [INFO] 사용자 지정 슬롯 우선순위: ['31', '32', '33', '34', '35', '36', '37', '38', '39', '40']
-엑셀 파일이 생성되었습니다: D:\Code\iDRAC_Info\idrac_info\data\idrac_info\XE9680_GUID.xlsx
-
-2026-01-17 09:15:50,925 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:16:25,939 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 09:17:00,948 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:46:15,509 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-17 19:46:15,530 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-17 19:46:15,620 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-17 19:46:15,633 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-17 19:46:15,634 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-17 19:46:15,636 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-17 19:46:17,098 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-17 19:46:22,074 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:46:28,075 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:46:29,843 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-17 19:46:29,881 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-17 19:46:29,882 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-17 19:46:34,538 [INFO] root: 파일 삭제됨: XE9680_GUID.xlsx
-2026-01-17 19:46:35,316 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:46:41,440 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:46:42,557 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 19:46:43,352 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 19:46:43,998 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 19:46:47,862 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 19:46:47,864 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 19:46:47,864 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 19:46:50,977 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:46:56,761 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 19:46:56,761 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 19:46:56,776 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-17 19:47:00,147 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 19:47:00,148 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 19:47:00,166 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-17 19:47:05,147 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:47:25,605 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:47:47,674 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:48:18,450 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:48:53,583 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:49:28,709 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:50:03,843 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-17 19:50:38,958 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
diff --git a/data/logs/app.log b/data/logs/app.log
deleted file mode 100644
index b595838..0000000
--- a/data/logs/app.log
+++ /dev/null
@@ -1,2489 +0,0 @@
-2026-01-20 17:05:27,240 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-20 17:05:27,261 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-20 17:05:27,343 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 17:05:27,356 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-20 17:05:27,356 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-20 17:05:27,358 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 17:05:28,738 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 17:05:33,726 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:05:39,728 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:05:46,977 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:05:51,477 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-20 17:05:51,516 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-20 17:05:51,517 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-20 17:05:53,102 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:06:02,613 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:06:03,297 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 17:06:03,297 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 17:06:07,187 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 17:06:07,188 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 17:06:16,793 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:06:37,661 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:06:59,948 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:07:27,485 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 17:07:27,486 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 17:07:30,635 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:07:31,182 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 17:07:31,182 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 17:08:05,944 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:08:37,542 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 17:08:37,543 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 17:08:40,324 [INFO] root: 파일 이동 성공: 1BZ7HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 17:08:40,324 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 17:08:41,084 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:08:41,786 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 17:08:42,971 [INFO] root: 파일 이동 성공: 1V48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 17:09:16,123 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:09:51,199 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:10:26,411 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:11:01,572 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:32:32,554 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-20 17:32:32,569 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-20 17:32:32,583 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 17:32:32,596 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-20 17:32:32,596 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-20 17:32:32,598 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 17:32:33,928 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 17:32:38,968 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:32:44,986 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:32:52,265 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:32:58,411 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:33:01,152 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 3MYCZC4.txt
-2026-01-20 17:33:01,153 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 3Y48HG4.txt
-2026-01-20 17:33:01,168 [INFO] root: ✅ MAC 파일 이동 완료 (11개)
-2026-01-20 17:33:01,168 [INFO] root: ✅ MAC 파일 이동 완료 (13개)
-2026-01-20 17:33:01,168 [WARNING] root: ⚠️ 일부 파일 이동 실패: ['4XZCZC4.txt: 파일이 존재하지 않음']
-2026-01-20 17:33:08,517 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:33:09,175 [WARNING] root: ⚠️ 파일이 이미 사라짐 (Skip): 1T48HG4.txt
-2026-01-20 17:33:09,177 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 2XZCZC4.txt
-2026-01-20 17:33:09,177 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 3LYCZC4.txt
-2026-01-20 17:33:09,220 [INFO] root: ✅ MAC 파일 이동 완료 (14개)
-2026-01-20 17:33:09,221 [WARNING] root: ⚠️ 파일이 이미 사라짐 (Skip): 4XZCZC4.txt
-2026-01-20 17:33:09,221 [INFO] root: ✅ MAC 파일 이동 완료 (11개)
-2026-01-20 17:33:09,221 [WARNING] root: ⚠️ 일부 파일 이동 실패: ['1BZ7HG4.txt: 파일이 존재하지 않음']
-2026-01-20 17:33:27,707 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:33:33,194 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:33:39,684 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:33:47,677 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:33:54,918 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:35:48,022 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-20 17:35:48,037 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-20 17:35:48,052 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 17:35:48,066 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-20 17:35:48,067 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-20 17:35:48,068 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 17:35:49,390 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 17:35:51,751 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 1XZCZC4.txt
-2026-01-20 17:35:51,752 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 2XZCZC4.txt
-2026-01-20 17:35:51,765 [WARNING] root: ⚠️ 파일이 이미 사라짐 (Skip): 3PYCZC4.txt
-2026-01-20 17:35:51,765 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 3SJCZC4.txt
-2026-01-20 17:35:51,766 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 3Y48HG4.txt
-2026-01-20 17:35:51,766 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 4K8XHG4.txt
-2026-01-20 17:35:51,766 [WARNING] root: ⚠️ 파일이 이미 존재하여 건너뜀: 4T48HG4.txt
-2026-01-20 17:35:51,767 [INFO] root: ✅ MAC 파일 이동 완료 (8개)
-2026-01-20 17:35:51,767 [INFO] root: ✅ MAC 파일 이동 완료 (14개)
-2026-01-20 17:35:54,458 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:36:00,454 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:36:07,709 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:36:13,827 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:38:11,628 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-20 17:38:11,642 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-20 17:38:11,657 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 17:38:11,671 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-20 17:38:11,671 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-20 17:38:11,672 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 17:38:13,002 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 17:38:13,323 [WARNING] root: ⚠️ 파일 사라짐 (Missing): 1BZ7HG4.txt
-2026-01-20 17:38:13,324 [WARNING] root: ⚠️ 파일 중복 (Skipped): 1V48HG4.txt
-2026-01-20 17:38:13,325 [WARNING] root: ⚠️ 파일 중복 (Skipped): 2V48HG4.txt
-2026-01-20 17:38:13,326 [WARNING] root: ⚠️ 파일 중복 (Skipped): 3MYCZC4.txt
-2026-01-20 17:38:13,363 [WARNING] root: ⚠️ 파일 중복 (Skipped): 4T48HG4.txt
-2026-01-20 17:38:13,363 [WARNING] root: ⚠️ 파일 사라짐 (Missing): 4XZCZC4.txt
-2026-01-20 17:38:13,363 [INFO] root: ✅ MAC 파일 이동 결과 - 총 16건: 이동 12, 중복 3, 사라짐 1
-2026-01-20 17:38:13,363 [INFO] root: ✅ MAC 파일 이동 결과 - 총 16건: 이동 14, 중복 1, 사라짐 1
-2026-01-20 17:40:08,468 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-20 17:40:08,484 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-20 17:40:08,499 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 17:40:08,513 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-20 17:40:08,513 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-20 17:40:08,515 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 17:40:09,874 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 17:40:13,161 [WARNING] root: ⚠️ 파일 사라짐 (Missing): 1BZ7HG4.txt
-2026-01-20 17:40:13,161 [WARNING] root: ⚠️ 파일 사라짐 (Missing): 1T48HG4.txt
-2026-01-20 17:40:13,162 [WARNING] root: ⚠️ 파일 사라짐 (Missing): 1XZCZC4.txt
-2026-01-20 17:40:13,163 [WARNING] root: ⚠️ 파일 사라짐 (Missing): 2T48HG4.txt
-2026-01-20 17:40:13,163 [WARNING] root: ⚠️ 파일 중복 (Skipped): 2XZCZC4.txt
-2026-01-20 17:40:13,164 [WARNING] root: ⚠️ 파일 중복 (Skipped): 3LYCZC4.txt
-2026-01-20 17:40:13,164 [WARNING] root: ⚠️ 파일 중복 (Skipped): 3PYCZC4.txt
-2026-01-20 17:40:13,165 [WARNING] root: ⚠️ 파일 중복 (Skipped): 3SJCZC4.txt
-2026-01-20 17:40:13,165 [WARNING] root: ⚠️ 파일 중복 (Skipped): 4K8XHG4.txt
-2026-01-20 17:40:13,166 [WARNING] root: ⚠️ 파일 사라짐 (Missing): 4XZCZC4.txt
-2026-01-20 17:40:13,166 [INFO] root: ✅ MAC 파일 이동 결과 - 총 16건: 이동 12, 중복 2, 사라짐 2
-2026-01-20 17:40:13,166 [INFO] root: ✅ MAC 파일 이동 결과 - 총 16건: 이동 10, 중복 3, 사라짐 3
-2026-01-20 17:40:14,861 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:42:16,142 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-20 17:42:16,157 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-20 17:42:16,172 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 17:42:16,184 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-20 17:42:16,184 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-20 17:42:16,186 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 17:42:17,563 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 17:42:22,542 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 17:42:25,737 [INFO] root: ⏭️ 파일 이미 존재 (완료됨): 1XZCZC4.txt
-2026-01-20 17:42:25,738 [INFO] root: ⏭️ 동시 처리됨 (완료): 2NYCZC4.txt
-2026-01-20 17:42:25,738 [INFO] root: ⏭️ 파일 이미 존재 (완료됨): 2T48HG4.txt
-2026-01-20 17:42:25,738 [INFO] root: ⏭️ 파일 이미 존재 (완료됨): 2V48HG4.txt
-2026-01-20 17:42:25,739 [INFO] root: ⏭️ 파일 이미 존재 (완료됨): 2XZCZC4.txt
-2026-01-20 17:42:25,739 [INFO] root: ⏭️ 파일 이미 존재 (완료됨): 3MYCZC4.txt
-2026-01-20 17:42:25,739 [INFO] root: ⏭️ 파일 이미 존재 (완료됨): 3PYCZC4.txt
-2026-01-20 17:42:25,740 [INFO] root: ⏭️ 파일 이미 존재 (완료됨): 3Y48HG4.txt
-2026-01-20 17:42:25,756 [INFO] root: ✅ MAC 처리 결과: 총 16건 중 16건 처리 완료 (이동: 14, 이미 완료: 2)
-2026-01-20 17:42:25,756 [INFO] root: ✅ MAC 처리 결과: 총 16건 중 16건 처리 완료 (이동: 9, 이미 완료: 7)
-2026-01-20 17:42:28,546 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:25:00,278 [INFO] root: Logger initialized | level=INFO | file=D:\Code\iDRAC_Info\idrac_info\data\logs\app.log
-2026-01-20 18:25:00,295 [INFO] app: DB URI = sqlite:///D:/Code/iDRAC_Info/idrac_info/backend/instance/site.db
-2026-01-20 18:25:00,309 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 18:25:00,322 [INFO] app: 🔒 봇 중복 실행 방지 락(TCP:50000) 획득 시도...
-2026-01-20 18:25:00,322 [INFO] app: 🔒 락 획득 성공! 봇 폴링 스레드를 시작합니다.
-2026-01-20 18:25:00,324 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 18:25:01,646 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 18:25:06,660 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:25:12,662 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:25:14,825 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-20 18:25:14,863 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-20 18:25:14,864 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-20 18:25:19,913 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:25:26,050 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:25:35,725 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:25:49,891 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:26:10,445 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:26:31,194 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 to 새 폴더 - 복사본
-2026-01-20 18:26:32,350 [INFO] root: 파일 이동 성공: 1T48HG4.txt from 새 폴더 - 복사본 to 새 폴더
-2026-01-20 18:26:33,067 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:27:03,814 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:27:38,943 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:27:42,017 [WARNING] backend.services.idrac_jobs: IP list file not found: data/server_list/idrac_ip_list.txt
-2026-01-20 18:28:13,973 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:28:49,120 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 18:29:03,841 [ERROR] telegram.ext.Application: No error handlers are registered, logging exception.
-Traceback (most recent call last):
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 134, in network_retry_loop
- await do_action()
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_utils\networkloop.py", line 127, in do_action
- action_cb_task.result()
- ~~~~~~~~~~~~~~~~~~~~~^^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_updater.py", line 340, in polling_action_cb
- updates = await self.bot.get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<3 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 676, in get_updates
- updates = await super().get_updates(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<9 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 4780, in get_updates
- await self._post(
- ^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- ),
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 703, in _post
- return await self._do_post(
- ^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\ext\_extbot.py", line 372, in _do_post
- return await super()._do_post(
- ^^^^^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\_bot.py", line 732, in _do_post
- result = await request.post(
- ^^^^^^^^^^^^^^^^^^^
- ...<6 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 198, in post
- result = await self._request_wrapper(
- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
- ...<7 lines>...
- )
- ^
- File "C:\Users\ktnsky20\AppData\Local\Programs\Python\Python314\Lib\site-packages\telegram\request\_baserequest.py", line 375, in _request_wrapper
- raise exception
-telegram.error.Conflict: Conflict: terminated by other getUpdates request; make sure that only one bot instance is running
-2026-01-20 20:33:14,472 [INFO] backend.routes.jobs: Jobs routes registered at /jobs
-2026-01-20 20:33:14,486 [INFO] telegram_bot_service: Starting polling for bot: admin_bot (ID: 1)
-2026-01-20 20:33:15,870 [INFO] apscheduler.scheduler: Scheduler started
-2026-01-20 20:33:30,911 [INFO] app: LOGIN: form ok email=ganghee@zespro.co.kr
-2026-01-20 20:33:30,950 [INFO] app: LOGIN: found id=1 active=True approved=True pass_ok=True
-2026-01-20 20:33:30,951 [INFO] app: LOGIN: SUCCESS → redirect
-2026-01-20 20:34:25,036 [INFO] root: file_view: folder=idrac_info date= filename=1BZ7HG4.txt | base=D:\Code\iDRAC_Info\idrac_info\data\idrac_info | target=D:\Code\iDRAC_Info\idrac_info\data\idrac_info\1BZ7HG4.txt
-2026-01-20 20:34:31,936 [WARNING] root: ⚠️ [MAC] 덮어쓰기 모드 활성화됨 - 중복 파일을 덮어씁니다.
-2026-01-20 20:34:31,947 [INFO] root: ✅ MAC 처리 결과: 총 16건 중 16건 처리 완료
-2026-01-20 20:38:40,612 [INFO] root: file_view: folder=idrac_info date= filename=1T48HG4.txt | base=D:\Code\iDRAC_Info\idrac_info\data\idrac_info | target=D:\Code\iDRAC_Info\idrac_info\data\idrac_info\1T48HG4.txt
-2026-01-20 20:38:46,553 [WARNING] root: ⚠️ [GUID] 덮어쓰기 모드 활성화됨 - 중복 파일을 덮어씁니다.
-2026-01-20 20:38:46,618 [INFO] root: ✅ GUID 처리: 총 126건 중 126건 처리 완료
-2026-01-20 20:39:23,991 [INFO] root: file_view: folder=idrac_info date= filename=2NYCZC4.txt | base=D:\Code\iDRAC_Info\idrac_info\data\idrac_info | target=D:\Code\iDRAC_Info\idrac_info\data\idrac_info\2NYCZC4.txt
-2026-01-20 20:39:26,088 [INFO] root: ✅ GPU 처리: 총 126건 중 126건 처리 완료
-2026-01-20 20:41:43,529 [WARNING] root: ⚠️ [GPU] 덮어쓰기 모드 활성화됨 - 중복 파일을 덮어씁니다.
-2026-01-20 20:41:43,599 [INFO] root: ✅ GPU 처리: 총 125건 중 125건 처리 완료
-2026-01-20 20:44:40,479 [INFO] root: ✅ GPU 처리: 총 126건 중 126건 처리 완료
-2026-01-20 20:45:01,039 [WARNING] root: ⚠️ [GPU] 덮어쓰기 모드 활성화됨 - 중복 파일을 덮어씁니다.
-2026-01-20 20:45:01,107 [INFO] root: ✅ GPU 처리: 총 126건 중 126건 처리 완료
-2026-01-20 20:45:14,410 [INFO] root: ✅ GUID 처리: 총 1건 중 1건 처리 완료
-2026-01-20 20:45:23,027 [WARNING] root: ⚠️ [GUID] 덮어쓰기 모드 활성화됨 - 중복 파일을 덮어씁니다.
-2026-01-20 20:45:23,028 [INFO] root: ✅ GUID 처리: 총 1건 중 1건 처리 완료
-2026-01-20 20:45:33,600 [INFO] root: ✅ MAC 처리 결과: 총 16건 중 16건 처리 완료
-2026-01-20 20:46:00,089 [INFO] root: ✅ MAC 처리 결과: 총 16건 중 16건 처리 완료
-2026-01-20 20:46:12,213 [WARNING] root: ⚠️ [MAC] 덮어쓰기 모드 활성화됨 - 중복 파일을 덮어씁니다.
-2026-01-20 20:46:12,225 [INFO] root: ✅ MAC 처리 결과: 총 16건 중 16건 처리 완료
diff --git a/data/mac/1BZ7HG4.txt b/data/mac/1BZ7HG4.txt
deleted file mode 100644
index 3b8a6ca..0000000
--- a/data/mac/1BZ7HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1BZ7HG4
-Slot.38: 3825:F303:0085:07A6
-Slot.39: 3825:F303:0084:FDBA
-Slot.37: 3825:F303:0085:07EE
-Slot.36: 3825:F303:0085:1E66
-Slot.32: 3825:F303:0084:FABE
-Slot.33: 3825:F303:0084:FE76
-Slot.34: 3825:F303:0084:FE5E
-Slot.35: 3825:F303:0085:07EA
-Slot.31: 3825:F303:0084:FC26
-Slot.40: 3825:F303:0084:FBCA
-GUID: 0x3825F303008507A6;0x3825F3030084FDBA;0x3825F303008507EE;0x3825F30300851E66;0x3825F3030084FABE;0x3825F3030084FE76;0x3825F3030084FE5E;0x3825F303008507EA;0x3825F3030084FC26;0x3825F3030084FBCA
diff --git a/data/mac/1T48HG4.txt b/data/mac/1T48HG4.txt
deleted file mode 100644
index 818e8f2..0000000
--- a/data/mac/1T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1T48HG4
-Slot.38: B45C:B503:000D:C3FA
-Slot.39: B45C:B503:000D:C3AA
-Slot.37: B45C:B503:000D:C3B6
-Slot.36: B45C:B503:000D:C3AE
-Slot.32: B45C:B503:000D:C3DE
-Slot.33: 605E:6503:00EE:1FC8
-Slot.34: 605E:6503:00EE:1FEC
-Slot.35: 605E:6503:00EE:1F40
-Slot.31: 605E:6503:00EE:1FC4
-Slot.40: B45C:B503:000D:C3CE
-GUID: 0xB45CB503000DC3FA;0xB45CB503000DC3AA;0xB45CB503000DC3B6;0xB45CB503000DC3AE;0xB45CB503000DC3DE;0x605E650300EE1FC8;0x605E650300EE1FEC;0x605E650300EE1F40;0x605E650300EE1FC4;0xB45CB503000DC3CE
diff --git a/data/mac/1V48HG4.txt b/data/mac/1V48HG4.txt
deleted file mode 100644
index 71d0bbc..0000000
--- a/data/mac/1V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1V48HG4
-Slot.38: B45C:B503:000D:C602
-Slot.39: B45C:B503:000D:C61E
-Slot.37: 605E:6503:00EE:1DF0
-Slot.36: B45C:B503:000D:C616
-Slot.32: B45C:B503:000D:C60A
-Slot.33: B45C:B503:000D:C5EE
-Slot.34: 605E:6503:00EE:1D70
-Slot.35: 605E:6503:00EE:1E3C
-Slot.31: 605E:6503:00EE:1B6C
-Slot.40: B45C:B503:000D:C5C2
-GUID: 0xB45CB503000DC602;0xB45CB503000DC61E;0x605E650300EE1DF0;0xB45CB503000DC616;0xB45CB503000DC60A;0xB45CB503000DC5EE;0x605E650300EE1D70;0x605E650300EE1E3C;0x605E650300EE1B6C;0xB45CB503000DC5C2
diff --git a/data/mac/1XZCZC4.txt b/data/mac/1XZCZC4.txt
deleted file mode 100644
index 8928b07..0000000
--- a/data/mac/1XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-1XZCZC4
-Slot.38: 3825:F303:00C4:15EC
-Slot.39: 3825:F303:00C4:15F8
-Slot.37: 3825:F303:00C4:15E8
-Slot.36: 3825:F303:00C4:15E4
-Slot.32: 3825:F303:00C4:1564
-Slot.33: 3825:F303:00C4:1560
-Slot.34: 3825:F303:00C4:0AF4
-Slot.35: 3825:F303:00C4:1600
-Slot.31: 3825:F303:00C4:0910
-Slot.40: 3825:F303:00C4:1608
-GUID: 0x3825F30300C415EC;0x3825F30300C415F8;0x3825F30300C415E8;0x3825F30300C415E4;0x3825F30300C41564;0x3825F30300C41560;0x3825F30300C40AF4;0x3825F30300C41600;0x3825F30300C40910;0x3825F30300C41608
diff --git a/data/mac/2NYCZC4.txt b/data/mac/2NYCZC4.txt
deleted file mode 100644
index d2cd94c..0000000
--- a/data/mac/2NYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2NYCZC4
-Slot.38: 3825:F303:00C4:042C
-Slot.39: 3825:F303:00C4:04A8
-Slot.37: 3825:F303:00C4:0420
-Slot.36: 3825:F303:00C4:0418
-Slot.32: 3825:F303:00C4:0508
-Slot.33: 3825:F303:00C4:12B4
-Slot.34: 3825:F303:00C4:12EC
-Slot.35: 3825:F303:00C4:122C
-Slot.31: 3825:F303:00C4:0484
-Slot.40: 3825:F303:00C4:048C
-GUID: 0x3825F30300C4042C;0x3825F30300C404A8;0x3825F30300C40420;0x3825F30300C40418;0x3825F30300C40508;0x3825F30300C412B4;0x3825F30300C412EC;0x3825F30300C4122C;0x3825F30300C40484;0x3825F30300C4048C
diff --git a/data/mac/2T48HG4.txt b/data/mac/2T48HG4.txt
deleted file mode 100644
index 5261592..0000000
--- a/data/mac/2T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2T48HG4
-Slot.38: B45C:B503:000D:C402
-Slot.39: 605E:6503:00EE:2038
-Slot.37: 605E:6503:00EE:1FE0
-Slot.36: 605E:6503:00EE:1FD8
-Slot.32: B45C:B503:000D:C40E
-Slot.33: 605E:6503:00EE:2080
-Slot.34: B45C:B503:000D:C406
-Slot.35: 605E:6503:00EE:2054
-Slot.31: B45C:B503:000D:C45A
-Slot.40: 605E:6503:00EE:20C8
-GUID: 0xB45CB503000DC402;0x605E650300EE2038;0x605E650300EE1FE0;0x605E650300EE1FD8;0xB45CB503000DC40E;0x605E650300EE2080;0xB45CB503000DC406;0x605E650300EE2054;0xB45CB503000DC45A;0x605E650300EE20C8
diff --git a/data/mac/2V48HG4.txt b/data/mac/2V48HG4.txt
deleted file mode 100644
index 67bacdf..0000000
--- a/data/mac/2V48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2V48HG4
-Slot.38: 605E:6503:00EE:1AA8
-Slot.39: 605E:6503:00EE:1A5C
-Slot.37: 605E:6503:00EE:1A1C
-Slot.36: 605E:6503:00EE:1AD8
-Slot.32: 605E:6503:00EE:1A98
-Slot.33: 605E:6503:00EE:1A54
-Slot.34: 605E:6503:00EE:1A70
-Slot.35: 605E:6503:00EE:1AA4
-Slot.31: 605E:6503:00EE:1A58
-Slot.40: 605E:6503:00EE:1A18
-GUID: 0x605E650300EE1AA8;0x605E650300EE1A5C;0x605E650300EE1A1C;0x605E650300EE1AD8;0x605E650300EE1A98;0x605E650300EE1A54;0x605E650300EE1A70;0x605E650300EE1AA4;0x605E650300EE1A58;0x605E650300EE1A18
diff --git a/data/mac/2XZCZC4.txt b/data/mac/2XZCZC4.txt
deleted file mode 100644
index 2f31006..0000000
--- a/data/mac/2XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-2XZCZC4
-Slot.38: 3825:F303:00C4:0AEC
-Slot.39: 3825:F303:00C4:0AD8
-Slot.37: 3825:F303:00C4:0AC8
-Slot.36: 3825:F303:00C4:15F4
-Slot.32: 3825:F303:00C4:0AD0
-Slot.33: 3825:F303:00C4:0AE0
-Slot.34: 3825:F303:00C4:0ADC
-Slot.35: 3825:F303:00C4:1568
-Slot.31: 3825:F303:00C4:0AE8
-Slot.40: 3825:F303:00C4:0AD4
-GUID: 0x3825F30300C40AEC;0x3825F30300C40AD8;0x3825F30300C40AC8;0x3825F30300C415F4;0x3825F30300C40AD0;0x3825F30300C40AE0;0x3825F30300C40ADC;0x3825F30300C41568;0x3825F30300C40AE8;0x3825F30300C40AD4
diff --git a/data/mac/3LYCZC4.txt b/data/mac/3LYCZC4.txt
deleted file mode 100644
index a8600a7..0000000
--- a/data/mac/3LYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3LYCZC4
-Slot.38: 5000:E603:0068:F204
-Slot.39: 5000:E603:0068:F464
-Slot.37: 5000:E603:0068:F2B8
-Slot.36: 5000:E603:0068:F2FC
-Slot.32: 5000:E603:0068:F294
-Slot.33: 5000:E603:0068:F504
-Slot.34: 5000:E603:0068:F450
-Slot.35: 5000:E603:0068:F2C4
-Slot.31: 5000:E603:0068:F50C
-Slot.40: 5000:E603:0068:F4FC
-GUID: 0x5000E6030068F204;0x5000E6030068F464;0x5000E6030068F2B8;0x5000E6030068F2FC;0x5000E6030068F294;0x5000E6030068F504;0x5000E6030068F450;0x5000E6030068F2C4;0x5000E6030068F50C;0x5000E6030068F4FC
diff --git a/data/mac/3MYCZC4.txt b/data/mac/3MYCZC4.txt
deleted file mode 100644
index a2fd8d0..0000000
--- a/data/mac/3MYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3MYCZC4
-Slot.38: 5000:E603:0068:F480
-Slot.39: 5000:E603:0068:F254
-Slot.37: 5000:E603:0068:F408
-Slot.36: 5000:E603:0068:F33C
-Slot.32: 5000:E603:0068:F40C
-Slot.33: 5000:E603:0068:F4AC
-Slot.34: 5000:E603:0068:F4C8
-Slot.35: 5000:E603:0068:F410
-Slot.31: 5000:E603:0068:F490
-Slot.40: 5000:E603:0068:F3A0
-GUID: 0x5000E6030068F480;0x5000E6030068F254;0x5000E6030068F408;0x5000E6030068F33C;0x5000E6030068F40C;0x5000E6030068F4AC;0x5000E6030068F4C8;0x5000E6030068F410;0x5000E6030068F490;0x5000E6030068F3A0
diff --git a/data/mac/3PYCZC4.txt b/data/mac/3PYCZC4.txt
deleted file mode 100644
index 8ef6ad7..0000000
--- a/data/mac/3PYCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3PYCZC4
-Slot.38: 5000:E603:0068:F460
-Slot.39: 5000:E603:0068:F44C
-Slot.37: 5000:E603:0068:F380
-Slot.36: 5000:E603:0068:F2BC
-Slot.32: 5000:E603:0068:F4EC
-Slot.33: 5000:E603:0068:F274
-Slot.34: 5000:E603:0068:F4E4
-Slot.35: 5000:E603:0068:F284
-Slot.31: 5000:E603:0068:F3DC
-Slot.40: 5000:E603:0068:F354
-GUID: 0x5000E6030068F460;0x5000E6030068F44C;0x5000E6030068F380;0x5000E6030068F2BC;0x5000E6030068F4EC;0x5000E6030068F274;0x5000E6030068F4E4;0x5000E6030068F284;0x5000E6030068F3DC;0x5000E6030068F354
diff --git a/data/mac/3SJCZC4.txt b/data/mac/3SJCZC4.txt
deleted file mode 100644
index 8262100..0000000
--- a/data/mac/3SJCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3SJCZC4
-Slot.38: 7C8C:0903:00AE:614C
-Slot.39: 7C8C:0903:00AE:6158
-Slot.37: 7C8C:0903:00AE:615C
-Slot.36: 7C8C:0903:00B6:A96A
-Slot.32: 7C8C:0903:00AE:6124
-Slot.33: 7C8C:0903:00B6:A976
-Slot.34: 7C8C:0903:00AE:6204
-Slot.35: 7C8C:0903:00AE:6208
-Slot.31: 7C8C:0903:00AE:61C0
-Slot.40: 7C8C:0903:00B6:A972
-GUID: 0x7C8C090300AE614C;0x7C8C090300AE6158;0x7C8C090300AE615C;0x7C8C090300B6A96A;0x7C8C090300AE6124;0x7C8C090300B6A976;0x7C8C090300AE6204;0x7C8C090300AE6208;0x7C8C090300AE61C0;0x7C8C090300B6A972
diff --git a/data/mac/3Y48HG4.txt b/data/mac/3Y48HG4.txt
deleted file mode 100644
index f5b1423..0000000
--- a/data/mac/3Y48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-3Y48HG4
-Slot.38: B45C:B503:000D:C4B6
-Slot.39: B45C:B503:000D:C6EA
-Slot.37: B45C:B503:000D:C4CA
-Slot.36: B45C:B503:000D:C49E
-Slot.32: B45C:B503:000D:C49A
-Slot.33: B45C:B503:000D:C6D2
-Slot.34: B45C:B503:000D:C6BA
-Slot.35: B45C:B503:000D:C4AE
-Slot.31: B45C:B503:000D:C4DA
-Slot.40: B45C:B503:000D:C4D2
-GUID: 0xB45CB503000DC4B6;0xB45CB503000DC6EA;0xB45CB503000DC4CA;0xB45CB503000DC49E;0xB45CB503000DC49A;0xB45CB503000DC6D2;0xB45CB503000DC6BA;0xB45CB503000DC4AE;0xB45CB503000DC4DA;0xB45CB503000DC4D2
diff --git a/data/mac/4K8XHG4.txt b/data/mac/4K8XHG4.txt
deleted file mode 100644
index 30fde6d..0000000
--- a/data/mac/4K8XHG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-4K8XHG4
-Slot.38: 605E:6503:00EE:1104
-Slot.39: 605E:6503:00EE:111C
-Slot.37: 605E:6503:00EE:10EC
-Slot.36: 605E:6503:00EE:1110
-Slot.32: 605E:6503:00EE:114C
-Slot.33: 605E:6503:00EE:1128
-Slot.34: 605E:6503:00EE:1114
-Slot.35: 605E:6503:00EE:1140
-Slot.31: 605E:6503:00EE:113C
-Slot.40: 605E:6503:00EE:1134
-GUID: 0x605E650300EE1104;0x605E650300EE111C;0x605E650300EE10EC;0x605E650300EE1110;0x605E650300EE114C;0x605E650300EE1128;0x605E650300EE1114;0x605E650300EE1140;0x605E650300EE113C;0x605E650300EE1134
diff --git a/data/mac/4T48HG4.txt b/data/mac/4T48HG4.txt
deleted file mode 100644
index 08b8e75..0000000
--- a/data/mac/4T48HG4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-4T48HG4
-Slot.38: 605E:6503:00EE:1D80
-Slot.39: 605E:6503:00EE:1AC8
-Slot.37: 605E:6503:00EE:192C
-Slot.36: 605E:6503:00EE:1AD4
-Slot.32: 605E:6503:00EE:1DA0
-Slot.33: 605E:6503:00EE:1B08
-Slot.34: 605E:6503:00EE:1988
-Slot.35: 605E:6503:00EE:1D9C
-Slot.31: 605E:6503:00EE:1DBC
-Slot.40: 605E:6503:00EE:1D88
-GUID: 0x605E650300EE1D80;0x605E650300EE1AC8;0x605E650300EE192C;0x605E650300EE1AD4;0x605E650300EE1DA0;0x605E650300EE1B08;0x605E650300EE1988;0x605E650300EE1D9C;0x605E650300EE1DBC;0x605E650300EE1D88
diff --git a/data/mac/4XZCZC4.txt b/data/mac/4XZCZC4.txt
deleted file mode 100644
index e6b02ba..0000000
--- a/data/mac/4XZCZC4.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-4XZCZC4
-Slot.38: 5000:E603:0068:F318
-Slot.39: 5000:E603:0068:F458
-Slot.37: 5000:E603:0068:F23C
-Slot.36: 5000:E603:0068:F090
-Slot.32: 5000:E603:0068:F448
-Slot.33: 5000:E603:0068:F440
-Slot.34: 5000:E603:0068:F310
-Slot.35: 5000:E603:0068:F430
-Slot.31: 5000:E603:0068:F3C8
-Slot.40: 5000:E603:0068:F438
-GUID: 0x5000E6030068F318;0x5000E6030068F458;0x5000E6030068F23C;0x5000E6030068F090;0x5000E6030068F448;0x5000E6030068F440;0x5000E6030068F310;0x5000E6030068F430;0x5000E6030068F3C8;0x5000E6030068F438
diff --git a/data/repository/xml/16G_T4,6 .xml b/data/repository/xml/16G_T4,6 .xml
new file mode 100644
index 0000000..a8a1c51
--- /dev/null
+++ b/data/repository/xml/16G_T4,6 .xml
@@ -0,0 +1,4001 @@
+
+
+
+
+
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ 0
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+
+
+
+
+
+
+ True
+ Clear
+ False
+ None
+ Local Key Management and Secure Enterprise Key Manager Capable
+ Yes
+
+
+
+ Disabled
+ Disabled
+ Automatic
+ Normal
+ On
+ Disabled
+ Disabled
+ 30
+ 30
+ 30
+ 30
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ False
+
+
+ True
+ Clear
+ Not Applicable
+ Disabled
+ Capable
+ No
+
+ Create
+ Default
+ WriteThrough
+ NoReadAhead
+ naver
+ 0
+ 256
+ 1
+ 2
+ RAID 1
+ Disk.Direct.0-0:BOSS.SL.12-1
+ Disk.Direct.1-1:BOSS.SL.12-1
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+
+
+ Enabled
+ Administrator
+ 0000000000000000000000000000000000000000
+ public
+ Disabled
+ root
+ calvin
+ 511
+ Administrator
+ Administrator
+ Enabled
+ Enabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+ Enabled
+ 0.0.0.0
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Enabled
+ 22
+ 1800
+
+ False
+ Enabled
+ 80
+ 443
+ 1800
+ Enabled
+ Enabled
+ 128-Bit or higher
+ TLS 1.1 and Higher
+ Auto
+
+
+ Disabled
+ Enabled
+
+ Disabled
+Enabled
+ Enabled
+ Enabled
+ 6
+ 25513
+ 1800
+ Deny Access
+ Auto-attach
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ 60
+ Enabled
+ ^\
+ Enabled
+ 115200
+ Administrator
+ 10
+ 255
+ Enabled
+ public
+ SNMPv1
+ All
+ 161
+ 162
+
+ support@dell.com
+ AutoAttach
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Enabled
+ 3
+ 60
+ 60
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ Disabled
+ 0
+ 0
+ Asia/Seoul
+
+
+
+
+
+ US
+
+ 2048
+
+ Disabled
+ Disabled
+ 0
+ Disabled
+ No Protection
+
+ Disabled
+ Enabled
+
+
+ 120
+ Standard Schema
+ ad.o.nfra.io
+
+
+ ad.o.nfra.io
+
+
+ Disabled
+ Disabled
+ Disabled
+
+
+ Enabled
+ LDAPS
+ Disabled
+ Disabled
+ SE_Admin
+ nhncorp.nhncorp.local
+ 511
+ IDC_Admin
+ nhncorp.nhncorp.local
+ 499
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+ nhncorp.nhncorp.local
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ 514
+ syslog.o.nfra.io
+
+
+ Disabled
+ 5
+ Disabled
+ Anonymous
+
+ 6514
+ Disabled
+
+ 636
+
+
+
+ Enabled
+
+
+
+ Enabled
+ Disabled
+ LDAPS
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+ 0.0.0.0
+ 25
+ Disabled
+
+
+
+
+ STARTTLS
+ chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
+ rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
+ curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521
+ umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512
+ Auto Attach
+
+ Read Only
+
+
+ Disabled
+ Done
+ Yes
+ Auto Attach
+
+ Read Only
+
+
+ Enabled
+ Done
+ Yes
+ Disabled
+ 0.0.0.0
+ usb-p2p
+ 169.254.1.1
+ fde1:53ba:e9a0:de11::1
+ Enabled
+ 255.255.255.0
+ Enabled
+ Dedicated
+ None
+ Enabled
+ 1000
+ Full
+ 1500
+
+ Disabled
+ Disabled
+ 0
+ 1
+ Disabled
+ 5
+ 30
+ Disabled
+ Both
+ Disabled
+ Disabled
+ 0
+ Off
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ EUI64
+
+ Disabled
+ 192.168.0.120
+ 255.255.255.0
+ 192.168.0.1
+ 0.0.0.0
+ 0.0.0.0
+ Enabled
+ ::
+ ::
+ 64
+ ::
+ ::
+ Enabled
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+ Disabled
+ Disabled
+
+
+
+ 16
+ Disabled
+ Disabled
+ Disabled
+ 1
+ 1
+ 1
+
+
+
+ Enabled
+ Disabled
+ Circular
+ Disabled
+ 60
+ Disabled
+ Disabled
+
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 480
+ None
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ 5901
+ Disabled
+ 300
+ Disabled
+ 2
+ False
+ Enabled
+ By accessing this computer, you confirm that such access complies with your organization's security policy.
+ Disabled
+ 1
+ 0
+ Normal
+ Enabled
+ Enabled while server has default credential settings only
+ Enabled
+
+ Disabled
+ CIFS
+
+
+
+
+
+ English
+ 0
+
+
+
+ Disabled
+ Enabled
+ Disabled
+ 3
+ 5
+ Yes
+ Enabled
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Enabled
+
+ Enabled
+ 1 day
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ 40
+
+ Disabled
+ 0
+ IERRCriticalTrigger
+ Disabled
+ 60
+ CPUCriticalTrigger, CPUWarnTrigger, TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 60
+ FANCriticalTrigger, FANWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 600
+
+ Disabled
+ 60
+ MEMCriticalTrigger, MEMWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ NVMeCriticalTrigger, NVMeWarnTrigger
+ Disabled
+ 60
+ TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 0
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+ VLTCriticalTrigger
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ PDRCriticalTrigger, PDRWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+ TMPCriticalTrigger, TMPWarnTrigger
+ Disabled
+ 60
+ TMPDiskCriticalTrigger, TMPDiskWarnTrigger, TMPCriticalTrigger, TMPWarnTrigger
+ 15
+ Disabled
+
+ Halt
+ 4
+ 24
+ Do not use the cached key
+ No Caching
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ DefaultIDEVID
+ Disabled
+ Enabled
+ Enabled
+ Allowlist
+ 1000:00A5:1028:2114,1000:00A5:1028:2115,1000:00A5:1028:2117,1000:00A5:1028:213A,1000:00A5:1028:213B,1000:00A5:1028:213C,1000:00A5:1028:213E,1000:00A5:1028:213F,1000:00A5:1028:2140,1000:00A5:1028:2141,1000:00A5:1028:2142,1000:00A5:1028:2209,1000:00A5:1028:220A,10DF:F400:10DF:F410,10DF:F400:10DF:F411,10DF:F400:10DF:F422
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Service Tag
+
+ Enabled
+ Watts
+ C
+ 0
+ unhide
+ SEL
+ Full-Access
+ No-License-Msg
+ DIsabled
+ 30
+ 30
+ 10
+ 10
+ Minimum Power
+ Off
+ 255
+ Disabled
+ Disabled
+ NO LIMIT
+ 55
+ Default
+ 0
+ 0
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+ 0
+ 0
+ 0
+
+
+
+ No
+
+
+ 0
+ Months
+ 0
+ 0
+
+
+
+ No
+ 0
+ 0
+
+ 0
+
+
+
+
+
+
+ 0
+
+ 0
+
+ Owned
+
+
+ No
+
+
+ No
+ Network
+
+
+
+
+
+ 0
+ Days
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+
+ A/B Grid Redundant
+ Disabled
+ PSU1
+ 1000000
+ 1000000
+ 1000000
+ Disabled
+ Disabled
+ Disabled
+ SelfPowered
+
+
+
+
+
+ EIA_310
+
+
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ None
+ Not Applicable
+
+ 0
+ Disabled
+ Disabled
+ 10
+ Disabled
+ Disabled
+ 10
+ 5
+ 120
+ GracefulRebootWithForcedShutdown
+
+
+
+ Enabled
+ Apply Always
+ Match firmware of replaced part
+
+ Off
+
+
+ False
+ Disabled
+
+
+ 80
+
+
+ HTTP
+ On
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+
+
+ NotConfigured
+ Enabled
+ MaxDataRate
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ RoundRobin
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Normal
+ Disabled
+
+ Disabled
+ Auto
+ All
+ Enabled
+ Disabled
+ Auto
+ Enabled
+ Disabled
+ Disabled
+
+ Auto
+ AhciMode
+ Enabled
+ Disabled
+
+
+
+
+
+
+
+
+
+ AllDrives
+ Uefi
+ Enabled
+
+ Disabled
+ Disabled
+ None
+ NIC.PxeDevice.1-1,NIC.PxeDevice.2-1
+
+
+
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ 4C4C4544-0035-3510-804B-B8C04F434834
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ NIC.Integrated.1-2-1
+ IPv4
+ Disabled
+ 1
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Con1Con2
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ AllOn
+ On
+ Enabled
+ DisabledOs
+ Enabled
+ Roll2KCycles
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ PlatformDefault
+
+
+
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ OnNoConRedir
+ Com1
+ 115200
+ Vt100Vt220
+ Enabled
+ Custom
+ MaxPerf
+ MaxPerf
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Standard
+ 1x
+ MaxUFS
+ Enabled
+ MaxPower
+ Disabled
+ Disabled
+ Disabled
+ Balance
+ Disabled
+
+
+
+
+
+ Disabled
+
+
+ Unlocked
+ On
+ Enabled
+ No
+
+ Disabled
+
+
+
+
+ Disabled
+ Last
+ Immediate
+ 120
+ Standard
+ Enabled
+ Disabled
+ Disabled
+ Standard
+ DeployedMode
+ Disabled
+ Disabled
+ SHA256
+ None
+
+
+ Disabled
+ OptimizerMode
+ Disabled
+ MemoryTrainingFast
+ Disabled
+ Enabled
+ Disabled
+ PagingClosed
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ LOCAL
+ Disabled
+
+ On
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ NIC.PxeDevice.1-1, NIC.PxeDevice.2-1
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/repository/xml/20260223_standard_PO-20251222-0150_DELL_ALL.xml b/data/repository/xml/20260223_standard_PO-20251222-0150_DELL_ALL.xml
new file mode 100644
index 0000000..f752028
--- /dev/null
+++ b/data/repository/xml/20260223_standard_PO-20251222-0150_DELL_ALL.xml
@@ -0,0 +1,4001 @@
+
+
+
+
+
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ 0
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+
+
+
+
+
+
+ True
+ Clear
+ False
+ None
+ Local Key Management and Secure Enterprise Key Manager Capable
+ Yes
+
+
+
+ Disabled
+ Disabled
+ Automatic
+ Normal
+ On
+ Disabled
+ Disabled
+ 30
+ 30
+ 30
+ 30
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ False
+
+
+ True
+ Clear
+ Not Applicable
+ Disabled
+ Capable
+ No
+
+ Create
+ Default
+ WriteThrough
+ NoReadAhead
+ naver
+ 0
+ 256
+ 1
+ 2
+ RAID 1
+ Disk.Direct.0-0:BOSS.SL.12-1
+ Disk.Direct.1-1:BOSS.SL.12-1
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+
+
+ Enabled
+ Administrator
+ 0000000000000000000000000000000000000000
+ public
+ Disabled
+ root
+ calvin
+ 511
+ Administrator
+ Administrator
+ Enabled
+ Enabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+ Enabled
+ 0.0.0.0
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Enabled
+ 22
+ 1800
+
+ False
+ Enabled
+ 80
+ 443
+ 1800
+ Enabled
+ Enabled
+ 128-Bit or higher
+ TLS 1.1 and Higher
+ Auto
+
+
+ Disabled
+ Enabled
+
+ Disabled
+Enabled
+ Enabled
+ Enabled
+ 6
+ 25513
+ 1800
+ Deny Access
+ Auto-attach
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ 60
+ Enabled
+ ^\
+ Enabled
+ 115200
+ Administrator
+ 10
+ 255
+ Enabled
+ public
+ SNMPv1
+ All
+ 161
+ 162
+
+ support@dell.com
+ AutoAttach
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Enabled
+ 3
+ 60
+ 60
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ Disabled
+ 0
+ 0
+ Asia/Seoul
+
+
+
+
+
+ US
+
+ 2048
+
+ Disabled
+ Disabled
+ 0
+ Disabled
+ No Protection
+
+ Disabled
+ Enabled
+
+
+ 120
+ Standard Schema
+ ad.o.nfra.io
+
+
+ ad.o.nfra.io
+
+
+ Disabled
+ Disabled
+ Disabled
+
+
+ Enabled
+ LDAPS
+ Disabled
+ Disabled
+ SE_Admin
+ nhncorp.nhncorp.local
+ 511
+ IDC_Admin
+ nhncorp.nhncorp.local
+ 499
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+ nhncorp.nhncorp.local
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ 514
+ syslog.o.nfra.io
+
+
+ Disabled
+ 5
+ Disabled
+ Anonymous
+
+ 6514
+ Disabled
+
+ 636
+
+
+
+ Enabled
+
+
+
+ Enabled
+ Disabled
+ LDAPS
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+ 0.0.0.0
+ 25
+ Disabled
+
+
+
+
+ STARTTLS
+ chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
+ rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
+ curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521
+ umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512
+ Auto Attach
+
+ Read Only
+
+
+ Disabled
+ Done
+ Yes
+ Auto Attach
+
+ Read Only
+
+
+ Enabled
+ Done
+ Yes
+ Disabled
+ 0.0.0.0
+ usb-p2p
+ 169.254.1.1
+ fde1:53ba:e9a0:de11::1
+ Enabled
+ 255.255.255.0
+ Enabled
+ Dedicated
+ None
+ Enabled
+ 1000
+ Full
+ 1500
+
+ Disabled
+ Disabled
+ 0
+ 1
+ Disabled
+ 5
+ 30
+ Disabled
+ Both
+ Disabled
+ Disabled
+ 0
+ Off
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ EUI64
+
+ Disabled
+ 192.168.0.120
+ 255.255.255.0
+ 192.168.0.1
+ 0.0.0.0
+ 0.0.0.0
+ Enabled
+ ::
+ ::
+ 64
+ ::
+ ::
+ Enabled
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+ Disabled
+ Disabled
+
+
+
+ 16
+ Disabled
+ Disabled
+ Disabled
+ 1
+ 1
+ 1
+
+
+
+ Enabled
+ Disabled
+ Circular
+ Disabled
+ 60
+ Disabled
+ Disabled
+
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 480
+ None
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ 5901
+ Disabled
+ 300
+ Disabled
+ 2
+ False
+ Enabled
+ By accessing this computer, you confirm that such access complies with your organization's security policy.
+ Disabled
+ 1
+ 0
+ Normal
+ Enabled
+ Enabled while server has default credential settings only
+ Enabled
+
+ Disabled
+ CIFS
+
+
+
+
+
+ English
+ 0
+
+
+
+ Disabled
+ Enabled
+ Disabled
+ 3
+ 5
+ Yes
+ Enabled
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Enabled
+
+ Enabled
+ 1 day
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ 40
+
+ Disabled
+ 0
+ IERRCriticalTrigger
+ Disabled
+ 60
+ CPUCriticalTrigger, CPUWarnTrigger, TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 60
+ FANCriticalTrigger, FANWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 600
+
+ Disabled
+ 60
+ MEMCriticalTrigger, MEMWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ NVMeCriticalTrigger, NVMeWarnTrigger
+ Disabled
+ 60
+ TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 0
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+ VLTCriticalTrigger
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ PDRCriticalTrigger, PDRWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+ TMPCriticalTrigger, TMPWarnTrigger
+ Disabled
+ 60
+ TMPDiskCriticalTrigger, TMPDiskWarnTrigger, TMPCriticalTrigger, TMPWarnTrigger
+ 15
+ Disabled
+
+ Halt
+ 4
+ 24
+ Do not use the cached key
+ No Caching
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ DefaultIDEVID
+ Disabled
+ Enabled
+ Enabled
+ Allowlist
+ 1000:00A5:1028:2114,1000:00A5:1028:2115,1000:00A5:1028:2117,1000:00A5:1028:213A,1000:00A5:1028:213B,1000:00A5:1028:213C,1000:00A5:1028:213E,1000:00A5:1028:213F,1000:00A5:1028:2140,1000:00A5:1028:2141,1000:00A5:1028:2142,1000:00A5:1028:2209,1000:00A5:1028:220A,10DF:F400:10DF:F410,10DF:F400:10DF:F411,10DF:F400:10DF:F422
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Service Tag
+
+ Enabled
+ Watts
+ C
+ 0
+ unhide
+ SEL
+ Full-Access
+ No-License-Msg
+ DIsabled
+ 30
+ 30
+ 10
+ 10
+ Minimum Power
+ Off
+ 255
+ Disabled
+ Disabled
+ NO LIMIT
+ 55
+ Default
+ 0
+ 0
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+ 0
+ 0
+ 0
+
+
+
+ No
+
+
+ 0
+ Months
+ 0
+ 0
+
+
+
+ No
+ 0
+ 0
+
+ 0
+
+
+
+
+
+
+ 0
+
+ 0
+
+ Owned
+
+
+ No
+
+
+ No
+ Network
+
+
+
+
+
+ 0
+ Days
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+
+ A/B Grid Redundant
+ Disabled
+ PSU1
+ 1000000
+ 1000000
+ 1000000
+ Disabled
+ Disabled
+ Disabled
+ SelfPowered
+
+
+
+
+
+ EIA_310
+
+
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ None
+ Not Applicable
+
+ 0
+ Disabled
+ Disabled
+ 10
+ Disabled
+ Disabled
+ 10
+ 5
+ 120
+ GracefulRebootWithForcedShutdown
+
+
+
+ Enabled
+ Apply Always
+ Match firmware of replaced part
+
+ Off
+
+
+ False
+ Disabled
+
+
+ 80
+
+
+ HTTP
+ On
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+
+
+ NotConfigured
+ Enabled
+ MaxDataRate
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ RoundRobin
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Normal
+ Disabled
+
+ Disabled
+ Auto
+ All
+ Enabled
+ Disabled
+ Auto
+ Enabled
+ Disabled
+ Disabled
+
+ Auto
+ AhciMode
+ Enabled
+ Disabled
+
+
+
+
+
+
+
+
+
+ AllDrives
+ Uefi
+ Enabled
+
+ Disabled
+ Disabled
+ None
+ NIC.PxeDevice.1-1,NIC.PxeDevice.2-1
+
+
+
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ 4C4C4544-0035-3510-804B-B8C04F434834
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ NIC.Integrated.1-2-1
+ IPv4
+ Disabled
+ 1
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Con1Con2
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ AllOn
+ On
+ Enabled
+ DisabledOs
+ Enabled
+ Roll2KCycles
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ PlatformDefault
+
+
+
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ OnNoConRedir
+ Com1
+ 115200
+ Vt100Vt220
+ Enabled
+ Custom
+ MaxPerf
+ MaxPerf
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Standard
+ 1x
+ MaxUFS
+ Enabled
+ MaxPower
+ Disabled
+ Disabled
+ Disabled
+ Balance
+ Disabled
+
+
+
+
+
+ Disabled
+
+
+ Unlocked
+ On
+ Enabled
+ No
+
+ Disabled
+
+
+
+
+ Disabled
+ Last
+ Immediate
+ 120
+ Standard
+ Enabled
+ Disabled
+ Disabled
+ Standard
+ DeployedMode
+ Disabled
+ Disabled
+ SHA256
+ None
+
+
+ Disabled
+ OptimizerMode
+ Disabled
+ MemoryTrainingFast
+ Disabled
+ Enabled
+ Disabled
+ PagingClosed
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ LOCAL
+ Disabled
+
+ On
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ NIC.PxeDevice.1-1, NIC.PxeDevice.2-1
+
+
+
+
+
+
+
diff --git a/data/xml/LinePlus_T1.xml b/data/repository/xml/LinePlus_T1.xml
similarity index 100%
rename from data/xml/LinePlus_T1.xml
rename to data/repository/xml/LinePlus_T1.xml
diff --git a/data/xml/PO-20250826-0158 _가산3_XE9680_384EA.xml b/data/repository/xml/PO-20250826-0158 _가산3_XE9680_384EA.xml
similarity index 100%
rename from data/xml/PO-20250826-0158 _가산3_XE9680_384EA.xml
rename to data/repository/xml/PO-20250826-0158 _가산3_XE9680_384EA.xml
diff --git a/data/repository/xml/PO-20251208-0239_H200_943EA.xml b/data/repository/xml/PO-20251208-0239_H200_943EA.xml
new file mode 100644
index 0000000..f958bdd
--- /dev/null
+++ b/data/repository/xml/PO-20251208-0239_H200_943EA.xml
@@ -0,0 +1,4308 @@
+
+
+
+
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ 0
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ PXE
+ Enabled
+
+
+ Disabled
+ Auto
+
+
+
+
+
+
+
+
+ True
+ Clear
+ False
+ None
+ Local Key Management and Secure Enterprise Key Manager Capable
+ Yes
+
+
+
+ Disabled
+ Enabled
+ 30
+ 10
+ 30
+
+ Create
+ Unlocked
+ None
+ Default
+ WriteBack
+ NoReadAhead
+ naver
+ 479559942144
+ 128
+ 1
+ 2
+ RAID 1
+ Disk.Bay.0:Enclosure.Internal.0-1:RAID.SL.9-1
+ Disk.Bay.1:Enclosure.Internal.0-1:RAID.SL.9-1
+
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ False
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ IB
+ Enabled
+
+ NONE
+ 4
+ NONE
+ 0
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enabled
+ Administrator
+ 0000000000000000000000000000000000000000
+ public
+ Enabled
+ root
+ calvin
+ 511
+ Administrator
+ Administrator
+ Enabled
+ Enabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+ Enabled
+ 0.0.0.0
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Enabled
+ 22
+ 1800
+
+ False
+ Enabled
+ 80
+ 443
+ 1800
+ Enabled
+ Enabled
+ 128-Bit or higher
+ TLS 1.1 and Higher
+ Auto
+
+
+ Disabled
+ Enabled
+
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ 6
+ 25513
+ 1800
+ Deny Access
+ Auto-attach
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ 60
+ Enabled
+ ^\
+ Enabled
+ 115200
+ Administrator
+ 10
+ 255
+ Enabled
+ public
+ SNMPv1
+ All
+ 161
+ 162
+
+ support@dell.com
+ AutoAttach
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Enabled
+ 3
+ 60
+ 60
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ Disabled
+ 0
+ 0
+ Asia/Seoul
+
+
+
+
+
+ US
+
+ 2048
+
+ Disabled
+ Disabled
+ 0
+ Disabled
+ No Protection
+
+ Disabled
+ Enabled
+
+
+ 120
+ Standard Schema
+ ad.o.nfra.io
+
+
+ ad.o.nfra.io
+
+
+ Disabled
+ Disabled
+ Disabled
+
+
+ Enabled
+ LDAPS
+ Disabled
+ Disabled
+ SE_Admin
+ nhncorp.nhncorp.local
+ 511
+ IDC_Admin
+ nhncorp.nhncorp.local
+ 499
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+ nhncorp.nhncorp.local
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ 514
+ syslog.o.nfra.io
+
+
+ Disabled
+ 5
+ Disabled
+ Anonymous
+
+ 6514
+ Disabled
+
+
+ Halt
+ Disabled
+
+ 636
+
+
+
+ Enabled
+
+
+
+ Enabled
+ Disabled
+ LDAPS
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+ 0.0.0.0
+ 25
+ Disabled
+
+
+
+
+ STARTTLS
+ chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
+ rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
+ curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521
+ umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512
+ Auto Attach
+
+ Read Only
+
+
+ Disabled
+ Done
+ Yes
+ Auto Attach
+
+ Read Only
+
+
+ Enabled
+ Done
+ Yes
+ Disabled
+ 0.0.0.0
+ usb-p2p
+ 169.254.1.1
+ fde1:53ba:e9a0:de11::1
+ Enabled
+ 255.255.255.0
+ Enabled
+ Dedicated
+ None
+ Enabled
+ 1000
+ Full
+ 1500
+
+ Disabled
+ Disabled
+ 0
+ 1
+ Disabled
+ 5
+ 30
+ Disabled
+ Both
+ Disabled
+ Disabled
+ 0
+ Off
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ EUI64
+
+ Disabled
+ 192.168.0.120
+ 255.255.255.0
+ 192.168.0.1
+ 0.0.0.0
+ 0.0.0.0
+ Enabled
+ ::
+ ::
+ 64
+ ::
+ ::
+ Enabled
+
+ Enabled
+
+
+ Enabled
+
+
+ Enabled
+
+
+ Enabled
+
+
+ Enabled
+
+
+ Enabled
+
+
+ Enabled
+
+
+ Enabled
+
+ Disabled
+ Disabled
+
+
+
+ 16
+ Disabled
+ Disabled
+ Disabled
+ 1
+ 1
+ 1
+
+
+
+ Enabled
+ Disabled
+ Circular
+ Disabled
+ 60
+ Disabled
+ Disabled
+
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 480
+ None
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ 5901
+ Disabled
+ 300
+ Disabled
+ 2
+ False
+ Enabled
+ By accessing this computer, you confirm that such access complies with your organization's security policy.
+ Disabled
+ 1
+ 0
+ Normal
+ Enabled
+ Enabled while server has default credential settings only
+ Enabled
+
+ Disabled
+ Disabled
+ CIFS
+
+
+
+
+
+ English
+ 0
+
+
+
+ Disabled
+ Enabled
+ Disabled
+ 3
+ 5
+ Yes
+ Enabled
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Enabled
+
+ Enabled
+ 1 day
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ 40
+
+ Disabled
+ 0
+ IERRCriticalTrigger
+ Disabled
+ 60
+ CPUCriticalTrigger, CPUWarnTrigger, TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 60
+ FANCriticalTrigger, FANWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 600
+
+ Disabled
+ 60
+ MEMCriticalTrigger, MEMWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ NVMeCriticalTrigger, NVMeWarnTrigger
+ Disabled
+ 60
+ TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 0
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+ VLTCriticalTrigger
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ PDRCriticalTrigger, PDRWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+ TMPCriticalTrigger, TMPWarnTrigger
+ Disabled
+ 60
+ TMPDiskCriticalTrigger, TMPDiskWarnTrigger, TMPCriticalTrigger, TMPWarnTrigger
+ 15
+
+
+
+
+ Enabled
+ Mixed
+
+
+
+
+ Enabled
+ Mixed
+ 10800
+ Disabled
+
+ Halt
+ 4
+ 24
+ Do not use the cached key
+ No Caching
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ DefaultIDEVID
+ Disabled
+ Enabled
+ Enabled
+ Allowlist
+ 1000:00A5:1028:2114,1000:00A5:1028:2115,1000:00A5:1028:2117,1000:00A5:1028:213A,1000:00A5:1028:213B,1000:00A5:1028:213C,1000:00A5:1028:213E,1000:00A5:1028:213F,1000:00A5:1028:2140,1000:00A5:1028:2141,1000:00A5:1028:2142,1000:00A5:1028:2209,1000:00A5:1028:220A,10DF:F400:10DF:F410,10DF:F400:10DF:F411,10DF:F400:10DF:F422
+
+
+
+
+ Enabled
+ Mixed
+
+
+
+
+ Enabled
+ Mixed
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Service Tag
+
+ Enabled
+ Watts
+ C
+ 0
+ unhide
+ SEL
+ Full-Access
+ No-License-Msg
+ DIsabled
+ 30
+ 30
+ 10
+ 10
+ Minimum Power
+ 70
+ Off
+ 255
+ Disabled
+ Disabled
+ NO LIMIT
+ 55
+ Default
+ 0
+ 0
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+ 0
+ 0
+ 0
+
+
+
+ No
+
+
+ 0
+ Months
+ 0
+ 0
+
+
+
+ No
+ 0
+ 0
+
+ 0
+
+
+
+
+
+
+ 0
+
+ 0
+
+ Owned
+
+
+ No
+
+
+ No
+ Network
+
+
+
+
+
+ 0
+ Days
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 20
+ 240
+ 80
+ Disabled
+
+ PSU Redundant
+ 1000000
+ 1000000
+ 1000000
+ Disabled
+ Disabled
+ Disabled
+ SelfPowered
+
+
+
+
+
+ EIA_310
+
+
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ None
+ Not Applicable
+
+ 0
+ Disabled
+ Disabled
+ 10
+ Disabled
+ Disabled
+ 10
+ 5
+ None
+ No
+ 120
+ GracefulRebootWithForcedShutdown
+
+
+
+ Enabled
+ Apply Always
+ Match firmware of replaced part
+
+ Off
+
+
+ False
+ Disabled
+
+
+ 80
+
+
+ HTTP
+ On
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+
+
+ NotConfigured
+ Enabled
+ MaxDataRate
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ RoundRobin
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ Normal
+ Disabled
+ IssOp1
+ Disabled
+
+ Disabled
+ Auto
+ All
+ Enabled
+ Disabled
+ Auto
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+
+ AhciMode
+ Enabled
+ Disabled
+
+ DellQualifiedDrives
+ Uefi
+ Enabled
+
+ Disabled
+ Disabled
+ None
+ NIC.PxeDevice.1-2
+
+
+
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ 4C4C4544-0039-5810-8031-C2C04F4E3934
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Con1Con2
+ InfiniBand.Slot.31-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ InfiniBand.Slot.31-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ InfiniBand.Slot.31-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ InfiniBand.Slot.31-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ InfiniBand.Slot.31-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ InfiniBand.Slot.31-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ AllOn
+ On
+ Enabled
+ DisabledOs
+ Enabled
+ Roll2KCycles
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ PlatformDefault
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ OnNoConRedir
+ Com1
+ 115200
+ Vt100Vt220
+ Enabled
+ Custom
+ Disabled
+ MaxPerf
+ MaxPerf
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Standard
+ 1x
+ MaxUFS
+ Enabled
+ MaxPower
+ Disabled
+ Disabled
+ Disabled
+ Balance
+ Disabled
+
+
+
+
+
+ Disabled
+
+
+ Unlocked
+ On
+ Enabled
+ No
+
+ Disabled
+
+
+
+
+ Disabled
+ Last
+ Immediate
+ 120
+ Standard
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Standard
+ DeployedMode
+ Disabled
+ Disabled
+ SHA256
+ None
+
+
+ Disabled
+ OptimizerMode
+ Disabled
+ Enabled
+ MemoryTrainingFast
+ Disabled
+ Enabled
+ Disabled
+ PagingClosed
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ LOCAL
+ Disabled
+
+ On
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ NIC.PxeDevice.1-1
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/repository/xml/PO-20251216-0065_TY11A_60EA.xml b/data/repository/xml/PO-20251216-0065_TY11A_60EA.xml
new file mode 100644
index 0000000..b06124c
--- /dev/null
+++ b/data/repository/xml/PO-20251216-0065_TY11A_60EA.xml
@@ -0,0 +1,3911 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ Clear
+ Not Applicable
+ Disabled
+ Capable
+ No
+
+
+ No
+ Non-RAID
+
+
+
+
+
+ 15
+ Enabled
+
+ NONE
+ 4
+ NONE
+ Disabled
+
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 15
+ Enabled
+
+ NONE
+ 4
+ NONE
+ Disabled
+
+ Disabled
+ 8
+ NoRetry
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ 0
+ PXE
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ PXE
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ NONE
+ PXE
+ Disabled
+
+
+ Enabled
+
+
+
+ 0
+
+ Disabled
+ NONE
+ PXE
+ Disabled
+
+
+ Enabled
+
+
+
+
+ Enabled
+ Administrator
+ 0000000000000000000000000000000000000000
+ public
+ Disabled
+ root
+ calvin
+ 511
+ Administrator
+ Administrator
+ Enabled
+ Enabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+ Enabled
+ 0.0.0.0
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Enabled
+ 22
+ 1800
+
+ False
+ Enabled
+ 80
+ 443
+ 1800
+ Enabled
+ Enabled
+ 128-Bit or higher
+ TLS 1.1 and Higher
+ Auto
+
+
+ Disabled
+ Enabled
+
+ Disabled
+Enabled
+ Enabled
+ Enabled
+ 6
+ 25513
+ 1800
+ Deny Access
+ Auto-attach
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ 60
+ Enabled
+ ^\
+ Enabled
+ 115200
+ Administrator
+ 10
+ 255
+ Enabled
+ public
+ SNMPv1
+ All
+ 161
+ 162
+
+ support@dell.com
+ AutoAttach
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Enabled
+ 3
+ 60
+ 60
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ Disabled
+ 0
+ 0
+ Asia/Seoul
+
+
+
+
+
+ US
+
+ 2048
+
+ Disabled
+ Disabled
+ 0
+ Disabled
+ No Protection
+
+ Disabled
+ Enabled
+
+
+ 120
+ Standard Schema
+ ad.o.nfra.io
+
+
+ ad.o.nfra.io
+
+
+ Disabled
+ Disabled
+ Disabled
+
+
+ Enabled
+ LDAPS
+ Disabled
+ Disabled
+ SE_Admin
+ nhncorp.nhncorp.local
+ 511
+ IDC_Admin
+ nhncorp.nhncorp.local
+ 499
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+ nhncorp.nhncorp.local
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ 514
+ syslog.o.nfra.io
+
+
+ Disabled
+ 5
+ Disabled
+ Anonymous
+
+ 6514
+ Disabled
+
+ 636
+
+
+
+ Enabled
+
+
+
+ Enabled
+ Disabled
+ LDAPS
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+ 0.0.0.0
+ 25
+ Disabled
+
+
+
+
+ STARTTLS
+ chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
+ rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
+ curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521
+ umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512
+ Auto Attach
+
+ Read Only
+
+
+ Disabled
+ Done
+ Yes
+ Auto Attach
+
+ Read Only
+
+
+ Enabled
+ Done
+ Yes
+ Disabled
+ 0.0.0.0
+ usb-p2p
+ 169.254.1.1
+ fde1:53ba:e9a0:de11::1
+ Enabled
+ 255.255.255.0
+ Enabled
+ Dedicated
+ None
+ Enabled
+ 1000
+ Full
+ 1500
+
+ Disabled
+ Disabled
+ 0
+ 1
+ Disabled
+ 5
+ 30
+ Disabled
+ Both
+ Disabled
+ Disabled
+ 0
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ EUI64
+
+ Disabled
+ 192.168.0.120
+ 255.255.255.0
+ 192.168.0.1
+ 0.0.0.0
+ 0.0.0.0
+ Enabled
+ ::
+ ::
+ 64
+ ::
+ ::
+ Enabled
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+ Disabled
+ Disabled
+
+
+
+ 16
+ Disabled
+ Disabled
+ Disabled
+ 1
+ 1
+ 1
+
+
+
+ Enabled
+ Disabled
+ Circular
+ Disabled
+ 60
+ Disabled
+ Disabled
+
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 480
+ None
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ 5901
+ Disabled
+ 300
+ Disabled
+ 2
+ False
+ Enabled
+ By accessing this computer, you confirm that such access complies with your organization's security policy.
+ Disabled
+ 1
+ 0
+ Normal
+ Enabled
+ Enabled while server has default credential settings only
+ Enabled
+
+ Disabled
+ CIFS
+
+
+
+
+
+ English
+ 0
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 3
+ 5
+ Yes
+ Enabled
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Enabled
+
+ Enabled
+ 1 day
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ 40
+
+ Disabled
+ 0
+ IERRCriticalTrigger
+ Disabled
+ 60
+ CPUCriticalTrigger, CPUWarnTrigger, TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 60
+ FANCriticalTrigger, FANWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 600
+
+ Disabled
+ 60
+ MEMCriticalTrigger, MEMWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ NVMeCriticalTrigger, NVMeWarnTrigger
+ Disabled
+ 60
+ TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 0
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+ VLTCriticalTrigger
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ PDRCriticalTrigger, PDRWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+ TMPCriticalTrigger, TMPWarnTrigger
+ Disabled
+ 60
+ TMPDiskCriticalTrigger, TMPDiskWarnTrigger, TMPCriticalTrigger, TMPWarnTrigger
+ 15
+ Disabled
+
+ Halt
+ 4
+ 24
+ Do not use the cached key
+ No Caching
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ DefaultIDEVID
+ Disabled
+ Enabled
+ Enabled
+ Allowlist
+ 1000:00A5:1028:2114,1000:00A5:1028:2115,1000:00A5:1028:2117,1000:00A5:1028:213A,1000:00A5:1028:213B,1000:00A5:1028:213C,1000:00A5:1028:213E,1000:00A5:1028:213F,1000:00A5:1028:2140,1000:00A5:1028:2141,1000:00A5:1028:2142,1000:00A5:1028:2209,1000:00A5:1028:220A,10DF:F400:10DF:F410,10DF:F400:10DF:F411,10DF:F400:10DF:F422
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Service Tag
+
+ Enabled
+ Watts
+ C
+ 0
+ unhide
+ SEL
+ Full-Access
+ No-License-Msg
+ DIsabled
+ 30
+ 30
+ 10
+ 10
+ Minimum Power
+ Off
+ 255
+ Disabled
+ Disabled
+ NO LIMIT
+ 55
+ Default
+ 0
+ 0
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+ 0
+ 0
+ 0
+
+
+
+ No
+
+
+ 0
+ Months
+ 0
+ 0
+
+
+
+ No
+ 0
+ 0
+
+ 0
+
+
+
+
+
+
+ 0
+
+ 0
+
+ Owned
+
+
+ No
+
+
+ No
+ Network
+
+
+
+
+
+ 0
+ Days
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+
+ A/B Grid Redundant
+ Disabled
+ Disabled
+ PSU1
+ 1000000
+ 1000000
+ 1000000
+ Disabled
+ Disabled
+ Disabled
+ SelfPowered
+
+
+
+
+
+ EIA_310
+
+
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ None
+ Not Applicable
+
+ 0
+ Disabled
+ Disabled
+ 10
+ Disabled
+ Disabled
+ 10
+ 5
+ 120
+ GracefulRebootWithForcedShutdown
+
+
+
+ Enabled
+ Apply Always
+ Match firmware of replaced part
+
+ Off
+
+
+ False
+ Disabled
+
+
+ 80
+
+
+ HTTP
+ On
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+
+
+ NotConfigured
+ Enabled
+ Enabled
+
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Linear
+ 1
+ Disabled
+ Disabled
+ 800
+ Maximum
+ Enabled
+ All
+ All
+ Disabled
+
+ AhciMode
+ Enabled
+ Disabled
+
+ DellQualifiedDrives
+ Uefi
+ Enabled
+
+ Disabled
+ Disabled
+ None
+ NIC.PxeDevice.1-1,NIC.PxeDevice.2-1
+
+
+
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ 4C4C4544-004E-3810-804B-C6C04F434834
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ NIC.Integrated.1-2-1
+ IPv4
+ Disabled
+ 1
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Con1Con2
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ AllOn
+ On
+ Enabled
+ Enabled
+ DisabledOs
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ 8TB
+ PlatformDefault
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Auto
+ Auto
+ Auto
+ OnNoConRedir
+ Com1
+ 115200
+ Vt100Vt220
+ Enabled
+ Custom
+ MaxPerf
+ MaxPerf
+ Enabled
+ Disabled
+ Standard
+ 1x
+ Disabled
+ Auto
+ PowerDeterminism
+ HighPerformanceMode
+ Auto
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ BoostFMaxAuto
+ Disabled
+ Disabled
+
+
+
+
+
+ Disabled
+
+
+ Unlocked
+ On
+ Enabled
+ No
+
+ Disabled
+ Last
+ Immediate
+ 120
+ Standard
+ Disabled
+ Disabled
+ Standard
+ DeployedMode
+ Disabled
+ Disabled
+ SHA256
+ None
+
+
+ Disabled
+ Performance
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ LOCAL
+ Disabled
+
+ On
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ NIC.PxeDevice.1-1, NIC.PxeDevice.2-1
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/repository/xml/PO-20260102-0087_R760xd2_27EA.xml b/data/repository/xml/PO-20260102-0087_R760xd2_27EA.xml
new file mode 100644
index 0000000..da65696
--- /dev/null
+++ b/data/repository/xml/PO-20260102-0087_R760xd2_27EA.xml
@@ -0,0 +1,4433 @@
+
+
+
+
+
+
+
+ 0
+
+ Disabled
+ NONE
+ PXE
+ Disabled
+
+
+ Enabled
+
+
+
+ 0
+
+ Disabled
+ NONE
+ PXE
+ Disabled
+
+
+ Enabled
+
+
+
+ 0
+
+ Disabled
+ NONE
+ PXE
+ Disabled
+
+
+ Enabled
+
+
+
+ 0
+
+ Disabled
+ NONE
+ PXE
+ Disabled
+
+
+ Enabled
+
+
+
+
+
+
+
+
+
+ True
+ Clear
+ False
+ None
+ Local Key Management and Secure Enterprise Key Manager Capable
+ Yes
+
+
+
+ Automatic
+ Enabled
+ Automatic
+ Normal
+ On
+ Disabled
+ Disabled
+ 30
+ 30
+ 30
+ 30
+
+ Create
+ Unlocked
+ True
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 20
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.20:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 13
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.13:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 16
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.16:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 19
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.19:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 21
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.21:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 14
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.14:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 18
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.18:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 17
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.17:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 12
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.12:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 23
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.23:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 15
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.15:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 22
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.22:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 6
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.6:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 4
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.4:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 3
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.3:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 8
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.8:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 11
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.11:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 1
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.1:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 10
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.10:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 9
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.9:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 7
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.7:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 2
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.2:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 0
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.0:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 5
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.5:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ False
+
+
+ True
+ Clear
+ Not Applicable
+ Disabled
+ Capable
+ No
+
+ Create
+ Default
+ WriteThrough
+ NoReadAhead
+ naver
+ 0
+ 256
+ 1
+ 2
+ RAID 1
+ Disk.Direct.0-0:BOSS.SL.14-1
+ Disk.Direct.1-1:BOSS.SL.14-1
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+
+
+ Enabled
+ Administrator
+ 0000000000000000000000000000000000000000
+ public
+ Disabled
+ root
+ calvin
+ 511
+ Administrator
+ Administrator
+ Enabled
+ Enabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+ Enabled
+ 0.0.0.0
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Enabled
+ 22
+ 1800
+
+ Done
+ Enabled
+ 80
+ 443
+ 1800
+ Enabled
+ Enabled
+ 128-Bit or higher
+ TLS 1.1 and Higher
+ Auto
+
+
+ Disabled
+ Enabled
+
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ 6
+ 25513
+ 1800
+ Deny Access
+ Auto-attach
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ 60
+ Enabled
+ ^\
+ Enabled
+ 115200
+ Administrator
+ 10
+ 255
+ Enabled
+ public
+ SNMPv1
+ All
+ 161
+ 162
+
+ support@dell.com
+ AutoAttach
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Enabled
+ 3
+ 60
+ 60
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ Disabled
+ 0
+ 0
+ Asia/Seoul
+
+
+
+
+
+ US
+
+ 2048
+
+ Disabled
+ Disabled
+ 0
+ Disabled
+ No Protection
+
+ Disabled
+ Enabled
+
+
+ 120
+ Standard Schema
+ ad.o.nfra.io
+
+
+ ad.o.nfra.io
+
+
+ Disabled
+ Disabled
+ Disabled
+
+
+ Enabled
+ LDAPS
+ Disabled
+ Disabled
+ SE_Admin
+ nhncorp.nhncorp.local
+ 511
+ IDC_Admin
+ nhncorp.nhncorp.local
+ 499
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+ nhncorp.nhncorp.local
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ 514
+ syslog.o.nfra.io
+
+
+ Disabled
+ 5
+ Disabled
+ Anonymous
+
+ 6514
+ Disabled
+
+ 636
+
+
+
+ Enabled
+
+
+
+ Enabled
+ Disabled
+ LDAPS
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+ 0.0.0.0
+ 25
+ Disabled
+
+
+
+
+ STARTTLS
+ chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
+ rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
+ curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521
+ umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512
+ Auto Attach
+
+ Read Only
+
+
+ Disabled
+ Done
+ Yes
+ Auto Attach
+
+ Read Only
+
+
+ Enabled
+ Done
+ Yes
+ Disabled
+ 0.0.0.0
+ usb-p2p
+ 169.254.1.1
+ fde1:53ba:e9a0:de11::1
+ Enabled
+ 255.255.255.0
+ Enabled
+ Dedicated
+ None
+ Enabled
+ 1000
+ Full
+ 1500
+
+ Disabled
+ Disabled
+ 0
+ 1
+ Disabled
+ 5
+ 30
+ Disabled
+ Both
+ Disabled
+ Disabled
+ 0
+ Off
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ EUI64
+
+ Disabled
+ 192.168.0.120
+ 255.255.255.0
+ 192.168.0.1
+ 0.0.0.0
+ 0.0.0.0
+ Enabled
+ ::
+ ::
+ 64
+ ::
+ ::
+ Enabled
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+ Disabled
+ Disabled
+
+
+
+ 16
+ Disabled
+ Disabled
+ Disabled
+ 1
+ 1
+ 1
+
+
+
+ Enabled
+ Disabled
+ Circular
+ Disabled
+ 60
+ Disabled
+ Disabled
+
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 480
+ None
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ 5901
+ Disabled
+ 300
+ Disabled
+ 2
+ False
+ Enabled
+ By accessing this computer, you confirm that such access complies with your organization's security policy.
+ Disabled
+ 1
+ 0
+ Normal
+ Enabled
+ Enabled while server has default credential settings only
+ Enabled
+
+ Disabled
+ CIFS
+
+
+
+
+
+ English
+ 0
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 3
+ 5
+ Yes
+ Enabled
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Enabled
+
+ Enabled
+ 1 day
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ 40
+
+ Disabled
+ 0
+ IERRCriticalTrigger
+ Disabled
+ 60
+ CPUCriticalTrigger, CPUWarnTrigger, TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 60
+ FANCriticalTrigger, FANWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 600
+
+ Disabled
+ 60
+ MEMCriticalTrigger, MEMWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ NVMeCriticalTrigger, NVMeWarnTrigger
+ Disabled
+ 60
+ TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 0
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+ VLTCriticalTrigger
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ PDRCriticalTrigger, PDRWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+ TMPCriticalTrigger, TMPWarnTrigger
+ Disabled
+ 60
+ TMPDiskCriticalTrigger, TMPDiskWarnTrigger, TMPCriticalTrigger, TMPWarnTrigger
+ 15
+ Disabled
+
+ Halt
+ 4
+ 24
+ Do not use the cached key
+ No Caching
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ DefaultIDEVID
+ Disabled
+ Enabled
+ Enabled
+ Allowlist
+ 1000:00A5:1028:2114,1000:00A5:1028:2115,1000:00A5:1028:2117,1000:00A5:1028:213A,1000:00A5:1028:213B,1000:00A5:1028:213C,1000:00A5:1028:213E,1000:00A5:1028:213F,1000:00A5:1028:2140,1000:00A5:1028:2141,1000:00A5:1028:2142,1000:00A5:1028:2209,1000:00A5:1028:220A,10DF:F400:10DF:F410,10DF:F400:10DF:F411,10DF:F400:10DF:F422
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Service Tag
+
+ Enabled
+ Watts
+ C
+ 0
+ unhide
+ SEL
+ Full-Access
+ No-License-Msg
+ DIsabled
+ 30
+ 30
+ 10
+ 10
+ Minimum Power
+ Off
+ 255
+ Disabled
+ Disabled
+ NO LIMIT
+ 55
+ Default
+ 0
+ 0
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+ 0
+ 0
+ 0
+
+
+
+ No
+
+
+ 0
+ Months
+ 0
+ 0
+
+
+
+ No
+ 0
+ 0
+
+ 0
+
+
+
+
+
+
+ 0
+
+ 0
+
+ Owned
+
+
+ No
+
+
+ No
+ Network
+
+
+
+
+
+ 0
+ Days
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+
+ A/B Grid Redundant
+ Disabled
+ PSU1
+ 1000000
+ 1000000
+ 1000000
+ Disabled
+ Disabled
+ Disabled
+ SelfPowered
+ FALSE
+
+
+
+
+
+ EIA_310
+
+
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ None
+ Not Applicable
+
+ 0
+ 120
+ GracefulRebootWithForcedShutdown
+
+
+
+ Enabled
+ Apply Always
+ Match firmware of replaced part
+
+ Off
+
+
+ False
+ Disabled
+
+
+ 80
+
+
+ HTTP
+ On
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+
+
+ Enabled
+ Enabled
+
+
+
+ NotConfigured
+ Enabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ RoundRobin
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Normal
+ Disabled
+
+ Disabled
+ Auto
+ All
+ Enabled
+ Disabled
+ Auto
+ Enabled
+ Disabled
+ Disabled
+
+ AhciMode
+ Enabled
+ Disabled
+
+
+
+
+
+
+
+
+
+ DellQualifiedDrives
+ Uefi
+ Enabled
+
+ Disabled
+ Disabled
+ None
+ NIC.PxeDevice.1-1,NIC.PxeDevice.2-1
+
+
+
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ 4C4C4544-004B-5210-8035-C4C04F5A4634
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ NIC.Integrated.1-2-1
+ IPv4
+ Disabled
+ 1
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Con1Con2
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ AllOn
+ On
+ Enabled
+ DisabledOs
+ Enabled
+ Roll2KCycles
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ PlatformDefault
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Auto
+ Auto
+ Auto
+ OnNoConRedir
+ Com1
+ 115200
+ Vt100Vt220
+ Enabled
+ Custom
+ MaxPerf
+ MaxPerf
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Standard
+ 1x
+ MaxUFS
+ Enabled
+ MaxPower
+ Disabled
+ Disabled
+ Disabled
+ Balance
+ Disabled
+
+
+
+
+
+ Disabled
+
+
+ Unlocked
+ On
+ Enabled
+ No
+
+ Disabled
+
+
+
+
+ Enabled
+ Last
+ Immediate
+ 120
+ Standard
+ Enabled
+ Disabled
+ Disabled
+ Standard
+ DeployedMode
+ Disabled
+ Disabled
+ SHA256
+ None
+
+
+ Disabled
+
+ MemoryTrainingFast
+ Disabled
+ Enabled
+ Disabled
+ PagingClosed
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ LOCAL
+ Disabled
+
+ On
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ NIC.PxeDevice.1-1, NIC.PxeDevice.2-1
+
+
+
+
+
+
+
diff --git a/data/repository/xml/PO-20260112-0006_R760xd2_세종.xml b/data/repository/xml/PO-20260112-0006_R760xd2_세종.xml
new file mode 100644
index 0000000..0dad741
--- /dev/null
+++ b/data/repository/xml/PO-20260112-0006_R760xd2_세종.xml
@@ -0,0 +1,4461 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ True
+ Clear
+ False
+ None
+ Local Key Management and Secure Enterprise Key Manager Capable
+ Yes
+
+
+
+ Automatic
+ Enabled
+ Automatic
+ Normal
+ On
+ Disabled
+ Disabled
+ 30
+ 30
+ 30
+ 30
+
+ Create
+ Unlocked
+ True
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 20
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.20:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 23
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.23:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 14
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.14:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 12
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.12:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 19
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.19:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 22
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.22:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 13
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.13:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 17
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.17:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 21
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.21:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 18
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.18:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 16
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.16:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 15
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.15:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 1
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.1:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 5
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.5:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 2
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.2:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 0
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.0:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 3
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.3:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 9
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.9:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 4
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.4:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 6
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.6:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 10
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.10:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 7
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.7:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 8
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.8:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+ Create
+ Unlocked
+ False
+ True
+ None
+ Default
+ WriteThrough
+ NoReadAhead
+ NonRAID Disk 11
+ 0
+ 512
+ 1
+ 1
+ RAID 0
+ Disk.Bay.11:Enclosure.Internal.0-3:RAID.Slot.5-1
+
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+ False
+
+
+ True
+ Clear
+ Not Applicable
+ Disabled
+ Capable
+ No
+
+ Create
+ Default
+ WriteThrough
+ NoReadAhead
+ naver
+ 0
+ 256
+ 1
+ 2
+ RAID 1
+ Disk.Direct.0-0:BOSS.SL.14-1
+ Disk.Direct.1-1:BOSS.SL.14-1
+
+
+ No
+ Ready
+ False
+
+
+ No
+ Ready
+ False
+
+
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ NONE
+
+
+ Disabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ 0
+ PXE
+
+
+ Enabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ PXE
+ Disabled
+
+
+ Enabled
+ Auto
+
+
+ 0
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ NONE
+ 0
+ PXE
+ Disabled
+
+
+ Enabled
+ Auto
+
+
+
+ Enabled
+ Administrator
+ 0000000000000000000000000000000000000000
+ public
+ Disabled
+ root
+ calvin
+ 511
+ Administrator
+ Administrator
+ Enabled
+ Enabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+
+
+ 0
+ No Access
+ No Access
+ Disabled
+ Disabled
+ Disabled
+ SHA
+ AES
+
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+
+ Disabled
+
+
+ Disabled
+ 0
+ Enabled
+ 0.0.0.0
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Enabled
+ 22
+ 1800
+
+ False
+ Enabled
+ 80
+ 443
+ 1800
+ Enabled
+ Enabled
+ 128-Bit or higher
+ TLS 1.2 and Higher
+ Auto
+
+
+ Disabled
+ Enabled
+
+ Disabled
+Enabled
+ Enabled
+ Enabled
+ 6
+ 25513
+ 1800
+ Deny Access
+ Auto-attach
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ 60
+ Enabled
+ ^\
+ Enabled
+ 115200
+ Administrator
+ 10
+ 255
+ Enabled
+ public
+ SNMPv1
+ All
+ 161
+ 162
+
+ support@dell.com
+ AutoAttach
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Enabled
+ 3
+ 60
+ 60
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ 192.168.1.1
+ 255.255.255.0
+ Disabled
+ Disabled
+ 0
+ 0
+ Asia/Seoul
+
+
+
+
+
+ US
+
+ 2048
+
+ Disabled
+ Disabled
+ 0
+ Disabled
+ No Protection
+
+ Disabled
+ Enabled
+
+
+ 120
+ Extended Schema
+ fdff:ffff:2:1::1002
+
+
+ fdff:ffff:2:1::1002
+
+
+ Disabled
+ Disabled
+ Disabled
+
+
+ Enabled
+ LDAPS
+ Disabled
+ Disabled
+ SE_Admin
+ navdc.com
+ 511
+ IDC_Admin
+ navdc.com
+ 499
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+
+
+ 0
+ navdc.com
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ 514
+ fdff:ffff:1:3::1001
+ fdff:ffff:2:1::1001
+
+ Disabled
+ 5
+ Disabled
+ Anonymous
+
+ 6514
+ Disabled
+
+ 636
+
+
+
+ Enabled
+
+
+
+ Enabled
+ Disabled
+ LDAPS
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+
+ 0
+ 0.0.0.0
+ 25
+ Disabled
+
+
+
+
+ STARTTLS
+ chacha20-poly1305@openssh.com,aes128-ctr,aes192-ctr,aes256-ctr,aes128-gcm@openssh.com,aes256-gcm@openssh.com
+ rsa-sha2-512,rsa-sha2-256,ecdsa-sha2-nistp256,ssh-ed25519
+ curve25519-sha256,curve25519-sha256@libssh.org,ecdh-sha2-nistp256,ecdh-sha2-nistp384,ecdh-sha2-nistp521
+ umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com,umac-128@openssh.com,hmac-sha2-256,hmac-sha2-512
+ Auto Attach
+
+ Read Only
+
+
+ Enabled
+ Done
+ Yes
+ Auto Attach
+
+ Read Only
+
+
+ Enabled
+ Done
+ Yes
+ Disabled
+ 0.0.0.0
+ usb-p2p
+ 169.254.1.1
+ fde1:53ba:e9a0:de11::1
+ Enabled
+ 255.255.255.0
+ Enabled
+ Dedicated
+ None
+ Enabled
+ 1000
+ Full
+ 1500
+
+ Disabled
+ Disabled
+ 0
+ 1
+ Disabled
+ 5
+ 30
+ Disabled
+ Both
+ Disabled
+ Disabled
+ 0
+ Off
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ EUI64
+
+ Enabled
+ 192.168.0.120
+ 255.255.255.0
+ 192.168.0.1
+ 0.0.0.0
+ 0.0.0.0
+ Enabled
+ ::
+ ::
+ 64
+ ::
+ ::
+ Enabled
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+
+ Disabled
+
+ Disabled
+ Disabled
+
+
+
+ 16
+ Disabled
+ Disabled
+ Disabled
+ 1
+ 1
+ 1
+
+
+
+ Enabled
+ Disabled
+ Circular
+ Disabled
+ 60
+ Disabled
+ Disabled
+
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 480
+ None
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ 5901
+ Disabled
+ 300
+ Disabled
+ 2
+ False
+ Enabled
+ By accessing this computer, you confirm that such access complies with your organization's security policy.
+ Disabled
+ 1
+ 0
+ Normal
+ Enabled
+ Enabled while server has default credential settings only
+ Enabled
+
+ Disabled
+ CIFS
+
+
+
+
+
+ English
+ 0
+
+
+
+ Enabled
+ Enabled
+ Disabled
+ 3
+ 5
+ Yes
+ Enabled
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Enabled
+
+ Enabled
+ 1 day
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ 40
+
+ Disabled
+ 0
+ IERRCriticalTrigger
+ Disabled
+ 60
+ CPUCriticalTrigger, CPUWarnTrigger, TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 60
+ FANCriticalTrigger, FANWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 600
+
+ Disabled
+ 60
+ MEMCriticalTrigger, MEMWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ NVMeCriticalTrigger, NVMeWarnTrigger
+ Disabled
+ 60
+ TMPCpuCriticalTrigger, TMPCpuWarnTrigger
+ Disabled
+ 0
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+
+ Disabled
+ 60
+ VLTCriticalTrigger
+ Disabled
+ 60
+
+ Disabled
+ 3600
+ PDRCriticalTrigger, PDRWarnTrigger
+ Disabled
+ 60
+
+ Disabled
+ 60
+ TMPCriticalTrigger, TMPWarnTrigger
+ Disabled
+ 60
+ TMPDiskCriticalTrigger, TMPDiskWarnTrigger, TMPCriticalTrigger, TMPWarnTrigger
+ 15
+ Disabled
+
+ Halt
+ 4
+ 24
+ Do not use the cached key
+ No Caching
+ Disabled
+ Enabled
+ Enabled
+ Disabled
+ DefaultIDEVID
+ Disabled
+ Enabled
+ Enabled
+ Allowlist
+ 1000:00A5:1028:2114,1000:00A5:1028:2115,1000:00A5:1028:2117,1000:00A5:1028:213A,1000:00A5:1028:213B,1000:00A5:1028:213C,1000:00A5:1028:213E,1000:00A5:1028:213F,1000:00A5:1028:2140,1000:00A5:1028:2141,1000:00A5:1028:2142,1000:00A5:1028:2209,1000:00A5:1028:220A,10DF:F400:10DF:F410,10DF:F400:10DF:F411,10DF:F400:10DF:F422
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Service Tag
+
+ Enabled
+ Watts
+ C
+ 0
+ unhide
+ SEL
+ Full-Access
+ No-License-Msg
+ DIsabled
+ 30
+ 30
+ 10
+ 10
+ Minimum Power
+ Off
+ 255
+ Disabled
+ Disabled
+ NO LIMIT
+ 55
+ Default
+ 0
+ 0
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+
+
+
+ Disabled
+ 0
+ 0
+ 0
+
+
+
+ No
+
+
+ 0
+ Months
+ 0
+ 0
+
+
+
+ No
+ 0
+ 0
+
+ 0
+
+
+
+
+
+
+ 0
+
+ 0
+
+ Owned
+
+
+ No
+
+
+ No
+ Network
+
+
+
+
+
+ 0
+ Days
+
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+
+ A/B Grid Redundant
+ Disabled
+ PSU1
+ 1000000
+ 1000000
+ 1000000
+ Disabled
+ Disabled
+ Disabled
+ SelfPowered
+
+
+
+
+
+ EIA_310
+
+
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ 0
+ Automatic
+ None
+ Not Applicable
+
+ 0
+ 120
+ GracefulRebootWithForcedShutdown
+
+
+
+ Enabled
+ Apply Always
+ Match firmware of replaced part
+
+ Off
+
+
+ False
+ Disabled
+
+
+ 80
+
+
+ HTTP
+ On
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ PowerOff
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ PowerOff
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ No Action
+
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ PowerOff
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Disabled
+ Disabled
+
+ Enabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ No Action
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ No Action
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Enabled
+ Disabled
+ Enabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Enabled
+ Disabled
+ Disabled
+ Enabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Enabled
+ Enabled
+ Enabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+
+
+
+ Disabled
+ Disabled
+
+
+
+ NotConfigured
+ Enabled
+ MaxDataRate
+ Disabled
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ RoundRobin
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Disabled
+ Normal
+ Disabled
+
+ Disabled
+ Auto
+ All
+ Enabled
+ Disabled
+ Auto
+ Enabled
+ Disabled
+ Disabled
+
+ AhciMode
+ Enabled
+ Disabled
+
+
+
+
+
+
+
+
+
+ DellQualifiedDrives
+ Uefi
+ Enabled
+
+ Disabled
+ Disabled
+ None
+ NIC.PxeDevice.1-1,NIC.PxeDevice.2-1
+
+
+
+ Enabled
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 4
+ Enabled
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+
+ Disabled
+ Disabled
+ 4C4C4544-004B-5210-8035-C4C04F5A4634
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ NIC.Integrated.1-2-1
+ IPv4
+ Disabled
+ 1
+ 0
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Con1Con2
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ NIC.Integrated.1-1-1
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 3260
+ 0
+
+ None
+ OneWay
+
+
+
+
+
+
+ Disabled
+ Disabled
+ Disabled
+ Disabled
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ NIC.Integrated.1-1-1
+ TCP
+ IPv4
+ Disabled
+ 1
+ 0
+ 3
+ 10000
+ Disabled
+
+
+
+ Disabled
+
+
+ 4420
+
+ 0
+ Disabled
+ None
+
+ AllOn
+ On
+ Enabled
+ DisabledOs
+ Enabled
+ Roll2KCycles
+ Disabled
+ Disabled
+ Disabled
+ Enabled
+ PlatformDefault
+
+
+
+
+
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Auto
+ Auto
+ Auto
+ Auto
+ Auto
+ OnNoConRedir
+ Com1
+ 115200
+ Vt100Vt220
+ Enabled
+ Custom
+ Disabled
+ MaxPerf
+ MaxPerf
+ Enabled
+ Disabled
+ Disabled
+ Disabled
+ Standard
+ 1x
+ MaxUFS
+ Enabled
+ MaxPower
+ Disabled
+ Disabled
+ Disabled
+ Balance
+ Disabled
+
+
+
+
+
+ Disabled
+
+
+ Unlocked
+ On
+ Enabled
+ No
+
+ Disabled
+
+
+
+
+ Disabled
+ Last
+ Immediate
+ 120
+ Standard
+ Enabled
+ Disabled
+ Disabled
+ Standard
+ DeployedMode
+ Disabled
+ Disabled
+ SHA256
+ None
+
+
+ Disabled
+ Disabled
+ MemoryTrainingFast
+ Disabled
+ Enabled
+ Disabled
+ PagingClosed
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ Enabled
+ LOCAL
+ Disabled
+
+ On
+ Disabled
+ Disabled
+ Enabled
+ Disabled
+ NIC.PxeDevice.1-1, NIC.PxeDevice.2-1
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/data/xml/R650_TY1.xml b/data/repository/xml/R650_TY1.xml
similarity index 100%
rename from data/xml/R650_TY1.xml
rename to data/repository/xml/R650_TY1.xml
diff --git a/data/xml/R6615.xml b/data/repository/xml/R6615.xml
similarity index 100%
rename from data/xml/R6615.xml
rename to data/repository/xml/R6615.xml
diff --git a/data/xml/R6615_raid.xml b/data/repository/xml/R6615_raid.xml
similarity index 100%
rename from data/xml/R6615_raid.xml
rename to data/repository/xml/R6615_raid.xml
diff --git a/data/xml/R6625_RAID.xml b/data/repository/xml/R6625_RAID.xml
similarity index 100%
rename from data/xml/R6625_RAID.xml
rename to data/repository/xml/R6625_RAID.xml
diff --git a/data/xml/R750_33EAT4.xml b/data/repository/xml/R750_33EAT4.xml
similarity index 100%
rename from data/xml/R750_33EAT4.xml
rename to data/repository/xml/R750_33EAT4.xml
diff --git a/data/xml/Sejong_LDAP.xml b/data/repository/xml/Sejong_LDAP.xml
similarity index 100%
rename from data/xml/Sejong_LDAP.xml
rename to data/repository/xml/Sejong_LDAP.xml
diff --git a/data/xml/T11_R660.xml b/data/repository/xml/T11_R660.xml
similarity index 100%
rename from data/xml/T11_R660.xml
rename to data/repository/xml/T11_R660.xml
diff --git a/data/xml/T6_R760_RAID_A.xml b/data/repository/xml/T6_R760_RAID_A.xml
similarity index 100%
rename from data/xml/T6_R760_RAID_A.xml
rename to data/repository/xml/T6_R760_RAID_A.xml
diff --git a/data/xml/T6_R760_XML_P.xml b/data/repository/xml/T6_R760_XML_P.xml
similarity index 100%
rename from data/xml/T6_R760_XML_P.xml
rename to data/repository/xml/T6_R760_XML_P.xml
diff --git a/data/xml/T6_R760_XML_S.xml b/data/repository/xml/T6_R760_XML_S.xml
similarity index 100%
rename from data/xml/T6_R760_XML_S.xml
rename to data/repository/xml/T6_R760_XML_S.xml
diff --git a/data/xml/T8A_R6625_P.xml b/data/repository/xml/T8A_R6625_P.xml
similarity index 100%
rename from data/xml/T8A_R6625_P.xml
rename to data/repository/xml/T8A_R6625_P.xml
diff --git a/data/xml/T8A_R6625_P_NoRaid.xml b/data/repository/xml/T8A_R6625_P_NoRaid.xml
similarity index 100%
rename from data/xml/T8A_R6625_P_NoRaid.xml
rename to data/repository/xml/T8A_R6625_P_NoRaid.xml
diff --git a/data/xml/T8A_R6625_P_test.xml b/data/repository/xml/T8A_R6625_P_test.xml
similarity index 100%
rename from data/xml/T8A_R6625_P_test.xml
rename to data/repository/xml/T8A_R6625_P_test.xml
diff --git a/data/xml/T8A_R6625_RAID_A.xml b/data/repository/xml/T8A_R6625_RAID_A.xml
similarity index 100%
rename from data/xml/T8A_R6625_RAID_A.xml
rename to data/repository/xml/T8A_R6625_RAID_A.xml
diff --git a/data/xml/T8A_R6625_S.xml b/data/repository/xml/T8A_R6625_S.xml
similarity index 100%
rename from data/xml/T8A_R6625_S.xml
rename to data/repository/xml/T8A_R6625_S.xml
diff --git a/data/xml/XE9680_50EA_REAL.xml b/data/repository/xml/XE9680_50EA_REAL.xml
similarity index 100%
rename from data/xml/XE9680_50EA_REAL.xml
rename to data/repository/xml/XE9680_50EA_REAL.xml
diff --git a/data/xml/XE9680_gasan2.xml b/data/repository/xml/XE9680_gasan2.xml
similarity index 100%
rename from data/xml/XE9680_gasan2.xml
rename to data/repository/xml/XE9680_gasan2.xml
diff --git a/data/scripts/.env b/data/scripts/.env
index a10c288..1ca579c 100644
--- a/data/scripts/.env
+++ b/data/scripts/.env
@@ -2,5 +2,5 @@
#IDRAC_PASS=tksoWkd12#
IDRAC_USER=root
IDRAC_PASS=calvin
-OME_USER=OME
-OME_PASS=epF!@34
+OME_USER=khsky84
+OME_PASS=Zes9ro12#$
diff --git a/data/scripts/01-settings.py b/data/scripts/01-settings.py
index 18f5ecd..f04bde9 100644
--- a/data/scripts/01-settings.py
+++ b/data/scripts/01-settings.py
@@ -26,7 +26,9 @@ def validate_ip_file(ip_file_path):
return ip_file_path
# 정보 저장 디렉터리 설정
-OUTPUT_DIR = "idrac_info"
+BASE_DIR = os.path.dirname(os.path.abspath(__file__))
+# data/scripts/ -> data/temp/staging
+OUTPUT_DIR = os.path.join(BASE_DIR, "..", "temp", "staging")
os.makedirs(OUTPUT_DIR, exist_ok=True)
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/03-tsr_log.py b/data/scripts/03-tsr_log.py
deleted file mode 100644
index 5607686..0000000
--- a/data/scripts/03-tsr_log.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import os
-import subprocess
-import time
-from dotenv import load_dotenv
-import sys
-from multiprocessing import Pool
-import logging
-
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
-
-# 환경 변수 로드
-load_dotenv() # .env 파일에서 환경 변수 로드
-
-# 사용자 이름 및 비밀번호 설정
-IDRAC_USER, IDRAC_PASS = os.getenv("IDRAC_USER"), os.getenv("IDRAC_PASS")
-
-# IP 주소 파일 로드 함수
-def load_ip_file(ip_file_path):
- if not os.path.isfile(ip_file_path):
- logging.error(f"IP file {ip_file_path} does not exist.")
- sys.exit(1)
- with open(ip_file_path, "r") as file:
- return [line.strip() for line in file if line.strip()]
-
-# iDRAC 정보를 가져오는 함수 정의
-def fetch_idrac_info(idrac_ip):
- logging.info(f"Collecting TSR report for iDRAC IP: {idrac_ip}")
- try:
- result = subprocess.run(
- ["racadm", "-r", idrac_ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "techsupreport", "collect"],
- capture_output=True,
- text=True
- )
- if result.returncode == 0:
- logging.info(f"Successfully collected TSR report for {idrac_ip}")
- else:
- logging.error(f"Failed to collect TSR report for {idrac_ip}: {result.stderr.strip()}")
-
- except Exception as e:
- logging.error(f"Exception occurred for {idrac_ip}: {e}")
-
-# 메인 함수
-if __name__ == "__main__":
- if len(sys.argv) < 2:
- sys.exit("Usage: python script.py ")
-
- ip_list = load_ip_file(sys.argv[1])
- start_time = time.time()
-
- # 병렬로 iDRAC 정보를 가져오는 작업 수행 (최대 10개 동시 처리)
- with Pool() as pool:
- pool.map(fetch_idrac_info, ip_list)
-
- elapsed_time = time.time() - start_time
- logging.info(f"설정 완료. 수집 완료 시간: {int(elapsed_time // 3600)} 시간, {int((elapsed_time % 3600) // 60)} 분, {int(elapsed_time % 60)} 초.")
\ No newline at end of file
diff --git a/data/scripts/04-tsr_save.py b/data/scripts/04-tsr_save.py
deleted file mode 100644
index 10bf36b..0000000
--- a/data/scripts/04-tsr_save.py
+++ /dev/null
@@ -1,63 +0,0 @@
-import os
-import subprocess
-from dotenv import load_dotenv
-import sys
-from multiprocessing import Pool
-import logging
-
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
-
-# 환경 변수 로드
-load_dotenv() # .env 파일에서 환경 변수 로드
-
-# 사용자 이름 및 비밀번호 설정
-IDRAC_USER = os.getenv("IDRAC_USER")
-IDRAC_PASS = os.getenv("IDRAC_PASS")
-OME_USER = os.getenv("OME_USER")
-OME_PASS = os.getenv("OME_PASS")
-
-# IP 주소 파일 로드 및 유효성 검사
-def load_ip_file(ip_file_path):
- if not os.path.isfile(ip_file_path):
- logging.error(f"IP file {ip_file_path} does not exist.")
- sys.exit(1)
- with open(ip_file_path, "r") as file:
- return [line.strip() for line in file if line.strip()]
-
-# iDRAC 정보를 가져오는 함수
-def fetch_idrac_info(idrac_ip):
- logging.info(f"Collecting TSR report for iDRAC IP: {idrac_ip}")
- try:
- result = subprocess.run(
- [
- "racadm", "-r", idrac_ip, "-u", IDRAC_USER, "-p", IDRAC_PASS,
- "techsupreport", "export", "-l", "//10.10.3.251/share/", "-u", OME_USER, "-p", OME_PASS
- ],
- capture_output=True,
- text=True
- )
- if result.returncode == 0:
- logging.info(f"Successfully collected TSR report for {idrac_ip}")
- else:
- logging.error(f"Failed to collect TSR report for {idrac_ip}: {result.stderr.strip()}")
-
- except Exception as e:
- logging.error(f"Exception occurred for {idrac_ip}: {e}")
-
-# 메인 함수
-if __name__ == "__main__":
- if len(sys.argv) < 2:
- sys.exit("Usage: python script.py ")
-
- ip_list = load_ip_file(sys.argv[1])
-
- # 병렬로 iDRAC 정보를 가져오는 작업 수행
- with Pool() as pool:
- pool.map(fetch_idrac_info, ip_list)
-
- logging.info("설정 완료.")
diff --git a/data/scripts/05-clrsel.py b/data/scripts/05-clrsel.py
deleted file mode 100644
index 302b158..0000000
--- a/data/scripts/05-clrsel.py
+++ /dev/null
@@ -1,51 +0,0 @@
-import os
-import subprocess
-import time
-from dotenv import load_dotenv
-import sys
-from multiprocessing import Pool
-
-# Load environment variables
-load_dotenv() # Load variables from .env file
-
-# Credentials
-IDRAC_USER, IDRAC_PASS = os.getenv("IDRAC_USER"), os.getenv("IDRAC_PASS")
-
-# Load IP addresses from file
-def load_ip_file(ip_file_path):
- if not os.path.isfile(ip_file_path):
- sys.exit(f"IP file {ip_file_path} does not exist.")
- with open(ip_file_path, "r") as file:
- return [line.strip() for line in file if line.strip()]
-
-# Clear SEL log for given iDRAC IP
-def clear_idrac_sel_log(idrac_ip):
- print(f"Clearing SEL log for iDRAC IP: {idrac_ip}")
- try:
- result = subprocess.run(
- ["racadm", "-r", idrac_ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "clrsel"],
- capture_output=True,
- text=True
- )
- print(
- f"Successfully cleared SEL log for {idrac_ip}"
- if result.returncode == 0
- else f"Failed to clear SEL log for {idrac_ip}: {result.stderr.strip()}"
- )
- except Exception as e:
- print(f"Exception occurred for {idrac_ip}: {e}")
-
-# Main function
-if __name__ == "__main__":
- if len(sys.argv) < 2:
- sys.exit("Usage: python script.py ")
-
- ip_list = load_ip_file(sys.argv[1])
- start_time = time.time()
-
- # Execute in parallel using Pool (max 10 simultaneous processes)
- with Pool(processes=10) as pool:
- pool.map(clear_idrac_sel_log, ip_list)
-
- elapsed_time = time.time() - start_time
- print(f"Log clear 완료. 완료 시간: {int(elapsed_time // 3600)} 시간, {int((elapsed_time % 3600) // 60)} 분, {int(elapsed_time % 60)} 초.")
\ No newline at end of file
diff --git a/data/scripts/06-PowerON.py b/data/scripts/06-PowerON.py
deleted file mode 100644
index 9da663c..0000000
--- a/data/scripts/06-PowerON.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import os
-import subprocess
-import time
-from dotenv import load_dotenv
-import sys
-from multiprocessing import Pool
-import logging
-
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
-
-# Load environment variables
-load_dotenv() # Load variables from .env file
-
-# Credentials
-IDRAC_USER, IDRAC_PASS = os.getenv("IDRAC_USER"), os.getenv("IDRAC_PASS")
-
-# Load IP addresses from file
-def load_ip_file(ip_file_path):
- if not os.path.isfile(ip_file_path):
- logging.error(f"IP file {ip_file_path} does not exist.")
- sys.exit(1)
- with open(ip_file_path, "r") as file:
- return [line.strip() for line in file if line.strip()]
-
-# Power on the server for given iDRAC IP
-def poweron_idrac_server(idrac_ip):
- logging.info(f"Powering on server for iDRAC IP: {idrac_ip}")
- try:
- result = subprocess.run(
- ["racadm", "-r", idrac_ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "serveraction", "powerup"],
- capture_output=True,
- text=True
- )
- if result.returncode == 0:
- logging.info(f"Successfully powered on server for {idrac_ip}")
- else:
- logging.error(f"Failed to power on server for {idrac_ip}: {result.stderr.strip()}")
-
- except Exception as e:
- logging.error(f"Exception occurred for {idrac_ip}: {e}")
-
-# Main function
-if __name__ == "__main__":
- if len(sys.argv) < 2:
- sys.exit("Usage: python script.py ")
-
- ip_list = load_ip_file(sys.argv[1])
- start_time = time.time()
-
- # Execute in parallel using Pool (max 10 simultaneous processes)
- with Pool() as pool:
- pool.map(poweron_idrac_server, ip_list)
-
- elapsed_time = time.time() - start_time
- logging.info(f"Server Power On 완료. 완료 시간: {int(elapsed_time // 3600)} 시간, {int((elapsed_time % 3600) // 60)} 분, {int(elapsed_time % 60)} 초.")
\ No newline at end of file
diff --git a/data/scripts/07-PowerOFF.py b/data/scripts/07-PowerOFF.py
deleted file mode 100644
index 23e932c..0000000
--- a/data/scripts/07-PowerOFF.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import os
-import subprocess
-import time
-from dotenv import load_dotenv
-import sys
-from multiprocessing import Pool
-import logging
-
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
-
-# Load environment variables
-load_dotenv() # Load variables from .env file
-
-# Credentials
-IDRAC_USER, IDRAC_PASS = os.getenv("IDRAC_USER"), os.getenv("IDRAC_PASS")
-
-# Load IP addresses from file
-def load_ip_file(ip_file_path):
- if not os.path.isfile(ip_file_path):
- logging.error(f"IP file {ip_file_path} does not exist.")
- sys.exit(1)
- with open(ip_file_path, "r") as file:
- return [line.strip() for line in file if line.strip()]
-
-# Power off the server for given iDRAC IP
-def poweroff_idrac_server(idrac_ip):
- logging.info(f"Powering off server for iDRAC IP: {idrac_ip}")
- try:
- result = subprocess.run(
- ["racadm", "-r", idrac_ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "serveraction", "powerdown"],
- capture_output=True,
- text=True
- )
- if result.returncode == 0:
- logging.info(f"Successfully powered off server for {idrac_ip}")
- else:
- logging.error(f"Failed to power off server for {idrac_ip}: {result.stderr.strip()}")
-
- except Exception as e:
- logging.error(f"Exception occurred for {idrac_ip}: {e}")
-
-# Main function
-if __name__ == "__main__":
- if len(sys.argv) < 2:
- sys.exit("Usage: python script.py ")
-
- ip_list = load_ip_file(sys.argv[1])
- start_time = time.time()
-
- # Execute in parallel using Pool (max 10 simultaneous processes)
- with Pool() as pool:
- pool.map(poweroff_idrac_server, ip_list)
-
- elapsed_time = time.time() - start_time
- logging.info(f"Server Power Off 완료. 완료 시간: {int(elapsed_time // 3600)} 시간, {int((elapsed_time % 3600) // 60)} 분, {int(elapsed_time % 60)} 초.")
\ No newline at end of file
diff --git a/data/scripts/08-job_delete_all.py b/data/scripts/08-job_delete_all.py
deleted file mode 100644
index 9a20c9e..0000000
--- a/data/scripts/08-job_delete_all.py
+++ /dev/null
@@ -1,60 +0,0 @@
-import os
-import subprocess
-import time
-from dotenv import load_dotenv
-import sys
-from multiprocessing import Pool
-import logging
-
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
-
-# Load environment variables
-load_dotenv() # Load variables from .env file
-
-# Credentials
-IDRAC_USER, IDRAC_PASS = os.getenv("IDRAC_USER"), os.getenv("IDRAC_PASS")
-
-# Load IP addresses from file
-def load_ip_file(ip_file_path):
- if not os.path.isfile(ip_file_path):
- logging.error(f"IP file {ip_file_path} does not exist.")
- sys.exit(1)
- with open(ip_file_path, "r") as file:
- return [line.strip() for line in file if line.strip()]
-
-# Delete all jobs for given iDRAC IP
-def delete_all_jobs(idrac_ip):
- logging.info(f"Deleting all jobs for iDRAC IP: {idrac_ip}")
- try:
- result = subprocess.run(
- ["racadm", "-r", idrac_ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "jobqueue", "delete", "-i", "ALL"],
- capture_output=True,
- text=True
- )
- if result.returncode == 0:
- logging.info(f"Successfully deleted all jobs for {idrac_ip}")
- else:
- logging.error(f"Failed to delete jobs for {idrac_ip}: {result.stderr.strip()}")
-
- except Exception as e:
- logging.error(f"Exception occurred for {idrac_ip}: {e}")
-
-# Main function
-if __name__ == "__main__":
- if len(sys.argv) < 2:
- sys.exit("Usage: python script.py ")
-
- ip_list = load_ip_file(sys.argv[1])
- start_time = time.time()
-
- # Execute in parallel using Pool (max 10 simultaneous processes)
- with Pool() as pool:
- pool.map(delete_all_jobs, ip_list)
-
- elapsed_time = time.time() - start_time
- logging.info(f"Job delete 완료. 완료 시간: {int(elapsed_time // 3600)} 시간, {int((elapsed_time % 3600) // 60)} 분, {int(elapsed_time % 60)} 초.")
\ No newline at end of file
diff --git a/data/scripts/09-Log_Viewer.py b/data/scripts/09-Log_Viewer.py
index 5d1cf4c..e3f1f85 100644
--- a/data/scripts/09-Log_Viewer.py
+++ b/data/scripts/09-Log_Viewer.py
@@ -27,7 +27,8 @@ def validate_ip_file(ip_file_path):
return ip_file_path
# 정보 저장 디렉터리 설정
-OUTPUT_DIR = "idrac_info"
+BASE_DIR = os.path.dirname(os.path.abspath(__file__))
+OUTPUT_DIR = os.path.join(BASE_DIR, "..", "temp", "staging")
os.makedirs(OUTPUT_DIR, exist_ok=True)
# iDRAC 정보를 가져오는 함수
diff --git a/data/scripts/AMD_Server_Info.py b/data/scripts/AMD_Server_Info.py
index a2deda8..a0ce3b9 100644
--- a/data/scripts/AMD_Server_Info.py
+++ b/data/scripts/AMD_Server_Info.py
@@ -28,7 +28,7 @@ def resolve_output_dir() -> Path:
else:
base = here.parent
- out = base / "idrac_info"
+ out = base / "temp" / "staging"
out.mkdir(parents=True, exist_ok=True)
return out
diff --git a/data/scripts/GPU_Serial_v1.py b/data/scripts/GPU_Serial_v1.py
index cdd8c3d..28bf6b7 100644
--- a/data/scripts/GPU_Serial_v1.py
+++ b/data/scripts/GPU_Serial_v1.py
@@ -39,7 +39,7 @@ def resolve_output_dir() -> Path:
else:
base = here.parent
- out = base / "idrac_info"
+ out = base / "temp" / "staging"
out.mkdir(parents=True, exist_ok=True)
return out
diff --git a/data/scripts/Intel_Server_info.py b/data/scripts/Intel_Server_info.py
index 3458ac3..a0a65b9 100644
--- a/data/scripts/Intel_Server_info.py
+++ b/data/scripts/Intel_Server_info.py
@@ -1,192 +1,21 @@
-import subprocess
-import os
-import re
-import time
+#!/usr/bin/env python3
+"""
+레거시 호환성 래퍼 - Intel_Server_info.py
+실제 로직은 unified/collect_server_info.py의 'intel_server' 프로파일 사용
+"""
+import sys
from pathlib import Path
-import logging
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
+script_dir = Path(__file__).parent
+sys.path.insert(0, str(script_dir))
-# --- [설정] iDRAC 접속 정보 ---
-IDRAC_USER = "root"
-IDRAC_PASS = "calvin"
-
-def resolve_output_dir() -> Path:
- """
- 사용자가 지정한 로직에 따라 저장 위치를 결정합니다.
- 스크립트 위치가 /data/scripts/ 일 경우 /data/idrac_info/ 에 저장합니다.
- """
- here = Path(__file__).resolve().parent
- if here.name.lower() == "scripts" and here.parent.name.lower() == "data":
- base = here.parent
- elif here.name.lower() == "scripts":
- base = here.parent
- else:
- base = here.parent
-
- out = base / "idrac_info"
- out.mkdir(parents=True, exist_ok=True)
- return out
-
-def run_racadm(ip: str, command: str) -> str:
- """racadm 명령어를 실행하고 결과를 문자열로 반환합니다."""
- full_cmd = f"racadm -r {ip} -u {IDRAC_USER} -p {IDRAC_PASS} {command}"
- try:
- # 쉘 명령 실행 (stderr도 포함하여 수집)
- result = subprocess.check_output(full_cmd, shell=True, stderr=subprocess.STDOUT, universal_newlines=True)
- return result
- except subprocess.CalledProcessError as e:
- # 통신 실패 시 빈 문자열 반환
- return ""
-
-def get_val(text: str, pattern: str) -> str:
- """텍스트 내에서 특정 키워드를 찾아 해당 줄의 설정값(= 이후의 값)을 추출합니다."""
- for line in text.splitlines():
- if re.search(pattern, line, re.IGNORECASE):
- parts = line.split('=')
- if len(parts) >= 2:
- return parts[1].strip()
- return "N/A"
-
-def fetch_idrac_info(ip: str, output_dir: Path):
- logging.info(f">>> {ip} 정보 수집 중...")
-
- # 1. 원시 데이터 벌크 수집 (네트워크 오버헤드 감소)
- getsysinfo = run_racadm(ip, "getsysinfo")
- hwinventory = run_racadm(ip, "hwinventory")
- sys_profile = run_racadm(ip, "get bios.SysProfileSettings")
- proc_settings = run_racadm(ip, "get bios.ProcSettings")
- mem_settings = run_racadm(ip, "get bios.MemSettings")
- storage_ctrl = run_racadm(ip, "get STORAGE.Controller.1")
-
- # 서비스 태그 추출 (파일명 결정용)
- svc_tag = get_val(getsysinfo, "SVC Tag")
- if svc_tag == "N/A":
- logging.error(f"[경고] {ip} 접속 실패 혹은 SVC Tag 확인 불가. 건너뜁니다.")
- return
-
- report_path = output_dir / f"{svc_tag}.txt"
-
- with open(report_path, "w", encoding="utf-8") as f:
- # 헤더 기록
- f.write(f"Dell EMC Server Bios,iDRAC,R/C Setting (SVC Tag: {svc_tag})\n\n")
-
- # --- Section 1: Firmware Version 정보 ---
- f.write("-" * 42 + " Firmware Version 정보 " + "-" * 42 + "\n")
- f.write(f"1. SVC Tag : {svc_tag}\n")
- f.write(f"2. Bios Firmware : {get_val(getsysinfo, 'System BIOS Version')}\n")
- f.write(f"3. iDRAC Firmware Version : {get_val(getsysinfo, 'Firmware Version')}\n")
-
- nic1 = run_racadm(ip, "get NIC.FrmwImgMenu.1")
- f.write(f"4. NIC Integrated Firmware Version : {get_val(nic1, '#FamilyVersion')}\n")
-
- nic5 = run_racadm(ip, "get NIC.FrmwImgMenu.5")
- f.write(f"5. OnBoard NIC Firmware Version : {get_val(nic5, '#FamilyVersion')}\n")
- f.write(f"6. Raid Controller Firmware Version : {get_val(hwinventory, 'ControllerFirmwareVersion')}\n\n")
-
- # --- Section 2: Bios 설정 정보 ---
- f.write("-" * 45 + " Bios 설정 정보 " + "-" * 46 + "\n")
- boot_settings = run_racadm(ip, "get bios.BiosBootSettings")
- f.write(f"01. Bios Boot Mode : {get_val(boot_settings, 'BootMode')}\n")
- f.write(f"02. System Profile : {get_val(sys_profile, 'SysProfile=')}\n")
- f.write(f"03. CPU Power Management : {get_val(sys_profile, 'EnergyPerformanceBias')}\n")
- f.write(f"04. Memory Frequency : {get_val(sys_profile, 'MemFrequency')}\n")
- f.write(f"05. Turbo Boost : {get_val(sys_profile, 'ProcTurboMode')}\n")
- f.write(f"06. C1E : {get_val(sys_profile, 'ProcC1E')}\n")
- f.write(f"07. C-States : {get_val(sys_profile, 'ProcCStates')}\n")
- f.write(f"08. Monitor/Mwait : {get_val(sys_profile, 'MonitorMwait')}\n")
- f.write(f"09. Logical Processor : {get_val(proc_settings, 'LogicalProc')}\n")
- f.write(f"10. Virtualization Technology : {get_val(proc_settings, 'ProcVirtualization')}\n")
- f.write(f"11. LLC Prefetch : {get_val(proc_settings, 'LlcPrefetch')}\n")
- f.write(f"12. x2APIC Mode : {get_val(proc_settings, 'ProcX2Apic')}\n")
- f.write(f"13. Node Interleaving : {get_val(mem_settings, 'NodeInterleave')}\n")
- f.write(f"14. DIMM Self Healing : {get_val(mem_settings, 'PPROnUCE')}\n")
- f.write(f"15. Correctable Error Logging : {get_val(mem_settings, 'CECriticalSEL')}\n")
-
- thermal = run_racadm(ip, "get System.ThermalSettings")
- f.write(f"16. Thermal Profile Optimization : {get_val(thermal, 'ThermalProfile')}\n")
-
- sriov = run_racadm(ip, "get Bios.IntegratedDevices")
- f.write(f"17. SR-IOV Global Enable : {get_val(sriov, 'SriovGlobalEnable')}\n")
-
- misc = run_racadm(ip, "get bios.MiscSettings")
- f.write(f"18. F1/F2 Prompt on Error : {get_val(misc, 'ErrPrompt')}\n\n")
-
- # --- Section 3: iDRAC 설정 정보 ---
- f.write("-" * 45 + " iDRAC 설정 정보 " + "-" * 45 + "\n")
- f.write(f"01. Timezone : {get_val(run_racadm(ip, 'get iDRAC.Time.Timezone'), 'Timezone')}\n")
- f.write(f"02. IPMI LAN Selection : {get_val(run_racadm(ip, 'get iDRAC.CurrentNIC'), 'ActiveNIC')}\n")
- f.write(f"03. IPMI IP(IPv4) DHCP : {get_val(run_racadm(ip, 'get iDRAC.CurrentIPv4'), 'DHCPEnable')}\n")
- f.write(f"04. IPMI IP(IPv6) Enable : {get_val(run_racadm(ip, 'get iDRAC.CurrentIPv6'), 'Enable=')}\n")
- f.write(f"05. Redfish Support : {get_val(run_racadm(ip, 'get iDRAC.Redfish.Enable'), 'Enable=')}\n")
- f.write(f"06. SSH Support : {get_val(run_racadm(ip, 'get iDRAC.SSH'), 'Enable=')}\n")
- f.write(f"07. AD User Domain Name : {get_val(run_racadm(ip, 'get iDRAC.USERDomain.1.Name'), 'Name')}\n")
- f.write(f"08. SC Server Address : {get_val(run_racadm(ip, 'get iDRAC.ActiveDirectory.DomainController1'), 'DomainController1')}\n")
-
- # Syslog 관련
- f.write(f"15. Remote Log (syslog) : {get_val(run_racadm(ip, 'get iDRAC.SysLog.SysLogEnable'), 'SysLogEnable')}\n")
- f.write(f"16. syslog server 1 : {get_val(run_racadm(ip, 'get iDRAC.SysLog.Server1'), 'Server1')}\n")
- f.write(f"17. syslog server 2 : {get_val(run_racadm(ip, 'get iDRAC.SysLog.Server2'), 'Server2')}\n")
- f.write(f"18. syslog server port : {get_val(run_racadm(ip, 'get iDRAC.SysLog.Port'), 'Port')}\n")
- f.write(f"19. VirtualConsole Port : {get_val(run_racadm(ip, 'get iDRAC.VirtualConsole.Port'), 'Port')}\n\n")
-
- # --- Section 4: Raid 설정 정보 ---
- f.write("-" * 45 + " Raid 설정 정보 " + "-" * 46 + "\n")
- f.write(f"01. Raid ProductName : {get_val(hwinventory, 'ProductName = BOSS')}, {get_val(hwinventory, 'ProductName = PERC')}\n")
- f.write(f"02. RAID Types : {get_val(hwinventory, 'RAIDTypes')}\n")
- f.write(f"03. StripeSize : {get_val(hwinventory, 'StripeSize')}\n")
- f.write(f"04. ReadCachePolicy : {get_val(hwinventory, 'ReadCachePolicy')}\n")
- f.write(f"05. WriteCachePolicy : {get_val(hwinventory, 'WriteCachePolicy')}\n")
- f.write(f"06. CheckConsistencyMode : {get_val(storage_ctrl, 'CheckConsistencyMode')}\n")
- f.write(f"07. PatrolReadRate : {get_val(storage_ctrl, 'PatrolReadRate')}\n")
- f.write(f"08. period : 168h\n")
- f.write(f"09. Power Save : No\n")
- f.write(f"10. JBODMODE : Controller does not support JBOD\n")
- f.write(f"11. maxconcurrentpd : 240\n")
-
- logging.info(f" ㄴ 완료: {report_path.name}")
-
-def main():
- import sys
- if len(sys.argv) < 2:
- logging.error("Usage: python script.py ")
- return
-
- ip_file = sys.argv[1]
- if not os.path.exists(ip_file):
- logging.error(f"파일을 찾을 수 없습니다: {ip_file}")
- return
-
- # 저장 위치 결정
- output_dir = resolve_output_dir()
- logging.info(f"[*] 결과 저장 폴더: {output_dir}")
-
- # 시간 측정 시작
- start_time = time.time()
-
- # IP 파일 읽기
- with open(ip_file, "r") as f:
- ips = [line.strip() for line in f if line.strip()]
-
- # 순차적 정보 수집
- for ip in ips:
- fetch_idrac_info(ip, output_dir)
-
- # 소요 시간 계산
- elapsed = time.time() - start_time
- hours = int(elapsed // 3600)
- minutes = int((elapsed % 3600) // 60)
- seconds = int(elapsed % 60)
-
- logging.info("=" * 50)
- logging.info(f"정보 수집 완료.")
- logging.info(f"소요 시간: {hours}시간 {minutes}분 {seconds}초")
- logging.info("=" * 50)
+from unified.collect_server_info import main as unified_main
if __name__ == "__main__":
- main()
+ if len(sys.argv) < 2:
+ print("Usage: python Intel_Server_info.py ")
+ sys.exit(1)
+
+ # intel_server 프로파일 사용
+ sys.argv.append("intel_server")
+ unified_main()
diff --git a/data/scripts/JP_54EA_MAC_info.py b/data/scripts/JP_54EA_MAC_info.py
index a30dde1..df0d55b 100644
--- a/data/scripts/JP_54EA_MAC_info.py
+++ b/data/scripts/JP_54EA_MAC_info.py
@@ -19,7 +19,7 @@ logging.basicConfig(
def resolve_output_dir() -> Path:
here = Path(__file__).resolve().parent
base = here.parent if here.name.lower() == "scripts" else here
- out = base / "idrac_info"
+ out = base / "temp" / "staging"
out.mkdir(parents=True, exist_ok=True)
return out
diff --git a/data/scripts/LOM.Enabled.sh b/data/scripts/LOM.Enabled.sh
index 5f9766e..e644cbf 100644
--- a/data/scripts/LOM.Enabled.sh
+++ b/data/scripts/LOM.Enabled.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/LOM_Disabled.sh b/data/scripts/LOM_Disabled.sh
index b80e417..0103f4f 100644
--- a/data/scripts/LOM_Disabled.sh
+++ b/data/scripts/LOM_Disabled.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/LinePLUS-MAC_info.sh b/data/scripts/LinePLUS-MAC_info.sh
index 4b1b374..7600500 100644
--- a/data/scripts/LinePLUS-MAC_info.sh
+++ b/data/scripts/LinePLUS-MAC_info.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/MAC_info.py b/data/scripts/MAC_info.py
index b565ba9..ad137c6 100644
--- a/data/scripts/MAC_info.py
+++ b/data/scripts/MAC_info.py
@@ -1,234 +1,26 @@
#!/usr/bin/env python3
-from __future__ import annotations
-
-import re
-import subprocess
+# -*- coding: utf-8 -*-
+"""
+레거시 호환성 래퍼 - MAC_info.py
+실제 로직은 unified/collect_mac.py의 'default' 프로파일 사용
+"""
+import sys
from pathlib import Path
-from typing import Optional, List
-import logging
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
+# unified 스크립트 경로 추가
+script_dir = Path(__file__).parent
+sys.path.insert(0, str(script_dir))
-# ─────────────────────────────────────────────────────────────
-# 출력 디렉토리 결정
-def resolve_output_dir() -> Path:
- here = Path(__file__).resolve().parent
- if here.name.lower() == "scripts" and here.parent.name.lower() == "data":
- base = here.parent
- else:
- base = here.parent
+# unified 스크립트 임포트 및 실행
+from unified.collect_mac import main as unified_main
- out = base / "idrac_info"
- out.mkdir(parents=True, exist_ok=True)
- return out
-
-
-# ─────────────────────────────────────────────────────────────
-# iDRAC 계정
-IDRAC_USER = "root"
-IDRAC_PASS = "calvin"
-
-
-def run(cmd: list[str]) -> str:
- """racadm 명령 실행 (stdout만 반환)"""
- try:
- return subprocess.getoutput(" ".join(cmd))
- except Exception:
- return ""
-
-
-def parse_single_value(pattern: str, text: str) -> Optional[str]:
- m = re.search(pattern, text, flags=re.IGNORECASE)
- return m.group(1).strip() if m else None
-
-
-# ─────────────────────────────────────────────────────────────
-# NIC MAC 수집 (가변 포트 대응)
-def extract_nic_macs(text: str, nic_type: str) -> List[str]:
- """
- nic_type:
- - 'Integrated'
- - 'Embedded'
- """
- pattern = re.compile(
- rf"NIC\.{nic_type}\.\d+-\d+-\d+.*?([0-9A-Fa-f]{{2}}(?::[0-9A-Fa-f]{{2}}){{5}})",
- re.IGNORECASE
- )
- return sorted(set(m.group(1) for m in pattern.finditer(text)))
-
-
-# ─────────────────────────────────────────────────────────────
-# hwinventory 블록 기반 Manufacturer 추출 (DIMM)
-def extract_memory_vendors(hwinventory: str) -> List[str]:
- vendors = set()
- blocks = re.split(r"\n\s*\n", hwinventory)
-
- for block in blocks:
- if "[InstanceID: DIMM." in block:
- m = re.search(r"Manufacturer\s*=\s*(.+)", block, re.IGNORECASE)
- if m:
- vendors.add(m.group(1).strip())
-
- return sorted(vendors)
-
-
-# ─────────────────────────────────────────────────────────────
-# BOSS 디스크 Vendor 추출
-def extract_boss_vendors(hwinventory: str) -> List[str]:
- vendors = set()
- blocks = re.split(r"\n\s*\n", hwinventory)
-
- for block in blocks:
- if "BOSS." in block:
- m = re.search(r"Manufacturer\s*=\s*(.+)", block, re.IGNORECASE)
- if m:
- vendors.add(m.group(1).strip())
-
- return sorted(vendors)
-
-
-# ─────────────────────────────────────────────────────────────
-# 일반 Disk Vendor (BOSS 제외)
-DISK_PREFIXES = [
- "Disk.Bay.",
- "Disk.M.2.",
- "Disk.Direct.",
- "Disk.Slot."
-]
-
-
-def extract_disk_vendors_excluding_boss(hwinventory: str) -> List[str]:
- vendors = set()
- blocks = re.split(r"\n\s*\n", hwinventory)
-
- for block in blocks:
- if "BOSS." in block:
- continue
-
- for prefix in DISK_PREFIXES:
- if f"[InstanceID: {prefix}" in block:
- m = re.search(r"Manufacturer\s*=\s*(.+)", block, re.IGNORECASE)
- if m:
- vendors.add(m.group(1).strip())
-
- return sorted(vendors)
-
-
-# ─────────────────────────────────────────────────────────────
-def fetch_idrac_info_one(ip: str, output_dir: Path) -> None:
- getsysinfo = run([
- "racadm", "-r", ip,
- "-u", IDRAC_USER,
- "-p", IDRAC_PASS,
- "getsysinfo"
- ])
-
- hwinventory = run([
- "racadm", "-r", ip,
- "-u", IDRAC_USER,
- "-p", IDRAC_PASS,
- "hwinventory"
- ])
-
- # ── Service Tag
- svc_tag = parse_single_value(r"SVC\s*Tag\s*=\s*(\S+)", getsysinfo)
- if not svc_tag:
- logging.error(f"[ERROR] SVC Tag 수집 실패: {ip}")
- return
-
- # ── iDRAC MAC
- idrac_mac = parse_single_value(
- r"MAC Address\s*=\s*([0-9A-Fa-f:]{17})", getsysinfo
- )
-
- # ── NIC MAC
- integrated_macs = extract_nic_macs(getsysinfo, "Integrated")
- embedded_macs = extract_nic_macs(getsysinfo, "Embedded")
-
- # ── Vendors
- memory_vendors = extract_memory_vendors(hwinventory)
- disk_vendors = extract_disk_vendors_excluding_boss(hwinventory)
- boss_vendors = extract_boss_vendors(hwinventory)
-
- # ── 결과 파일 저장
- out_file = output_dir / f"{svc_tag}.txt"
- with out_file.open("w", encoding="utf-8", newline="\n") as f:
- f.write(f"{svc_tag}\n")
-
- for mac in integrated_macs:
- f.write(f"{mac}\n")
-
- for mac in embedded_macs:
- f.write(f"{mac}\n")
-
- f.write(f"{idrac_mac or ''}\n")
-
- # Memory Vendors
- for v in memory_vendors:
- f.write(f"{v}\n")
-
- # Disk Vendors (일반)
- for v in disk_vendors:
- f.write(f"{v}\n")
-
- # BOSS Vendors (있을 때만, 벤더명만)
- for v in boss_vendors:
- f.write(f"{v}\n")
-
- logging.info(f"[OK] {svc_tag} 수집 완료")
-
-
-# ─────────────────────────────────────────────────────────────
-def main(ip_file: str) -> None:
- ip_path = Path(ip_file)
- if not ip_path.is_file():
- logging.error(f"[ERROR] IP 파일 없음: {ip_file}")
- return
-
- output_dir = resolve_output_dir()
-
- ips = [
- line.strip()
- for line in ip_path.read_text(encoding="utf-8").splitlines()
- if line.strip()
- ]
-
- if not ips:
- logging.error("[ERROR] IP 목록이 비어 있습니다.")
- return
-
- for ip in ips:
- try:
- fetch_idrac_info_one(ip, output_dir)
- except Exception as e:
- logging.error(f"[ERROR] {ip} 처리 실패: {e}")
-
- # Bash 스크립트와 동일하게 입력 IP 파일 삭제
- try:
- ip_path.unlink(missing_ok=True)
- except Exception:
- pass
-
- logging.info("정보 수집 완료.")
-
-
-# ─────────────────────────────────────────────────────────────
if __name__ == "__main__":
- import sys
- import time
-
- if len(sys.argv) != 2:
- logging.error("Usage: python script.py ")
+ # 기존 인터페이스 유지: python MAC_info.py
+ # 내부적으로 unified 스크립트 호출 (default 프로파일 사용)
+ if len(sys.argv) < 2:
+ print("Usage: python MAC_info.py ")
sys.exit(1)
-
- start = time.time()
- main(sys.argv[1])
- elapsed = int(time.time() - start)
-
- h, m, s = elapsed // 3600, (elapsed % 3600) // 60, elapsed % 60
- logging.info(f"수집 완료 시간: {h} 시간, {m} 분, {s} 초.")
+
+ # 프로파일 이름 추가
+ sys.argv.append("default")
+ unified_main()
diff --git a/data/scripts/PortGUID.py b/data/scripts/PortGUID.py
index ba31833..acac035 100644
--- a/data/scripts/PortGUID.py
+++ b/data/scripts/PortGUID.py
@@ -1,135 +1,21 @@
-import os
-import re
-import subprocess
-from dotenv import load_dotenv
-from concurrent.futures import ThreadPoolExecutor, as_completed
-import logging
+#!/usr/bin/env python3
+"""
+레거시 호환성 래퍼 - PortGUID.py
+실제 로직은 unified/collect_guid.py의 'default' 프로파일 사용
+"""
+import sys
+from pathlib import Path
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
+script_dir = Path(__file__).parent
+sys.path.insert(0, str(script_dir))
-# .env 파일에서 사용자 이름 및 비밀번호 설정
-load_dotenv()
-IDRAC_USER = os.getenv("IDRAC_USER")
-IDRAC_PASS = os.getenv("IDRAC_PASS")
-
-def fetch_idrac_info(idrac_ip, output_dir):
- try:
- # 서비스 태그 가져오기 (get 제외)
- cmd_getsysinfo = f"racadm -r {idrac_ip} -u {IDRAC_USER} -p {IDRAC_PASS} getsysinfo"
- getsysinfo = subprocess.getoutput(cmd_getsysinfo)
- svc_tag_match = re.search(r"SVC Tag\s*=\s*(\S+)", getsysinfo)
- svc_tag = svc_tag_match.group(1) if svc_tag_match else None
-
- if not svc_tag:
- logging.error(f"Failed to retrieve SVC Tag for IP: {idrac_ip}")
- return
-
- # InfiniBand.VndrConfigPage 목록 가져오기
- cmd_list = f"racadm -r {idrac_ip} -u {IDRAC_USER} -p {IDRAC_PASS} get InfiniBand.VndrConfigPage"
- output_list = subprocess.getoutput(cmd_list)
-
- # InfiniBand.VndrConfigPage.<숫자> 및 Key 값 추출
- matches = re.findall(r"InfiniBand\.VndrConfigPage\.(\d+)\s+\[Key=InfiniBand\.Slot\.(\d+)-\d+#VndrConfigPage]", output_list)
-
- # 결과를 저장할 파일 생성
- output_file = os.path.join(output_dir, f"{svc_tag}.txt")
- os.makedirs(output_dir, exist_ok=True)
-
- with open(output_file, "w") as f:
- # 서비스 태그 저장
- f.write(f"{svc_tag}\n")
-
- # 슬롯별 GUID를 딕셔너리로 수집
- slot_to_guid = {}
- slots_found = []
-
- # 각 InfiniBand.VndrConfigPage.<숫자> 처리
- for number, slot in matches:
- cmd_detail = f"racadm -r {idrac_ip} -u {IDRAC_USER} -p {IDRAC_PASS} get InfiniBand.VndrConfigPage.{number}"
- output_detail = subprocess.getoutput(cmd_detail)
-
- # PortGUID 값 추출
- match_guid = re.search(r"PortGUID=(\S+)", output_detail)
- port_guid = match_guid.group(1) if match_guid else "Not Found"
-
- slot_to_guid[slot] = port_guid
- slots_found.append(slot)
-
- # 환경변수에서 슬롯 우선순위 읽기
- slot_priority_str = os.getenv("GUID_SLOT_PRIORITY", "")
-
- if slot_priority_str:
- # 사용자 지정 슬롯 우선순위 사용
- desired_order = [s.strip() for s in slot_priority_str.split(",") if s.strip()]
- logging.info(f"사용자 지정 슬롯 우선순위 사용: {desired_order}")
- else:
- # 기본: 발견된 순서대로
- desired_order = slots_found
- logging.info(f"기본 순서 사용 (발견된 순서): {desired_order}")
-
- # 지정된 순서대로 파일에 기록 + GUID 합치기
- hex_guid_list = []
- for slot in desired_order:
- port_guid = slot_to_guid.get(slot, "Not Found")
- # Slot.<숫자>: 형식으로 저장
- f.write(f"Slot.{slot}: {port_guid}\n")
-
- # PortGUID를 0x 형식으로 변환하여 리스트에 추가
- if port_guid != "Not Found":
- hex_guid_list.append(f"0x{port_guid.replace(':', '').upper()}")
-
- # 모든 PortGUID를 "GUID: 0x;0x" 형식으로 저장
- if hex_guid_list:
- f.write(f"GUID: {';'.join(hex_guid_list)}\n")
- logging.info(f"GUID 합치기 완료: {len(hex_guid_list)}개 슬롯")
-
- logging.info(f"✅ Completed: {idrac_ip}")
-
-
- except Exception as e:
- logging.error(f"Error processing IP {idrac_ip}: {e}")
-
-def main(ip_file):
- if not os.path.isfile(ip_file):
- logging.error(f"IP file {ip_file} does not exist.")
- return
-
- # Output directory resolution
- # Try to find 'data/idrac_info' relative to this script
- script_dir = os.path.dirname(os.path.abspath(__file__))
- # Assuming script is in data/scripts, parent is data
- data_dir = os.path.dirname(script_dir)
- output_dir = os.path.join(data_dir, "idrac_info")
-
- # Fallback to current directory if structure is different
- if not os.path.basename(data_dir) == "data":
- output_dir = os.path.join(os.getcwd(), "idrac_info")
-
- os.makedirs(output_dir, exist_ok=True)
- logging.info(f"Output directory set to: {output_dir}")
-
- with open(ip_file, "r") as file:
- ip_addresses = [line.strip() for line in file.readlines()]
-
- with ThreadPoolExecutor(max_workers=100) as executor:
- future_to_ip = {executor.submit(fetch_idrac_info, ip, output_dir): ip for ip in ip_addresses}
-
- for future in as_completed(future_to_ip):
- try:
- future.result()
- except Exception as e:
- logging.error(f"Error processing task: {e}")
+from unified.collect_guid import main as unified_main
if __name__ == "__main__":
- import sys
- if len(sys.argv) != 2:
- logging.error("Usage: python script.py ")
+ if len(sys.argv) < 2:
+ print("Usage: python PortGUID.py ")
sys.exit(1)
-
- ip_file = sys.argv[1]
- main(ip_file)
+
+ # default 프로파일 사용
+ sys.argv.append("default")
+ unified_main()
diff --git a/data/scripts/PortGUID_v1.py b/data/scripts/PortGUID_v1.py
index a2c9952..91e1f28 100644
--- a/data/scripts/PortGUID_v1.py
+++ b/data/scripts/PortGUID_v1.py
@@ -39,7 +39,7 @@ def resolve_output_dir() -> Path:
else:
base = here.parent
- out = base / "idrac_info"
+ out = base / "temp" / "staging"
out.mkdir(parents=True, exist_ok=True)
return out
diff --git a/data/scripts/SP_18EA_MAC_info.py b/data/scripts/SP_18EA_MAC_info.py
index 4bc226f..8ebe3f1 100644
--- a/data/scripts/SP_18EA_MAC_info.py
+++ b/data/scripts/SP_18EA_MAC_info.py
@@ -19,7 +19,7 @@ logging.basicConfig(
def resolve_output_dir() -> Path:
here = Path(__file__).resolve().parent
base = here.parent if here.name.lower() == "scripts" else here
- out = base / "idrac_info"
+ out = base / "temp" / "staging"
out.mkdir(parents=True, exist_ok=True)
return out
diff --git a/data/scripts/Systemerase.sh b/data/scripts/Systemerase.sh
index e33c8f4..36154e3 100644
--- a/data/scripts/Systemerase.sh
+++ b/data/scripts/Systemerase.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/TYPE11_MAC_info.py b/data/scripts/TYPE11_MAC_info.py
index 3fcb18b..9218116 100644
--- a/data/scripts/TYPE11_MAC_info.py
+++ b/data/scripts/TYPE11_MAC_info.py
@@ -26,7 +26,7 @@ def resolve_output_dir() -> Path:
else:
base = here.parent
- out = base / "idrac_info"
+ out = base / "temp" / "staging"
out.mkdir(parents=True, exist_ok=True)
return out
diff --git a/data/scripts/TYPE11_Server_info.py b/data/scripts/TYPE11_Server_info.py
index 0e4ff6d..e085b09 100644
--- a/data/scripts/TYPE11_Server_info.py
+++ b/data/scripts/TYPE11_Server_info.py
@@ -27,7 +27,7 @@ def resolve_output_dir() -> Path:
base = here / "data"
else:
base = here # 그래도 현재 기준으로 생성
- out = base / "idrac_info"
+ out = base / "temp" / "staging"
out.mkdir(parents=True, exist_ok=True)
return out
diff --git a/data/scripts/TYPE6-MAC_info.sh b/data/scripts/TYPE6-MAC_info.sh
index 4e0a94d..7640081 100644
--- a/data/scripts/TYPE6-MAC_info.sh
+++ b/data/scripts/TYPE6-MAC_info.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/TYPE6_Server_info.sh b/data/scripts/TYPE6_Server_info.sh
index 8f404e8..6523f37 100644
--- a/data/scripts/TYPE6_Server_info.sh
+++ b/data/scripts/TYPE6_Server_info.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/TYPE8A-MAC_info.sh b/data/scripts/TYPE8A-MAC_info.sh
index 4e0a94d..7640081 100644
--- a/data/scripts/TYPE8A-MAC_info.sh
+++ b/data/scripts/TYPE8A-MAC_info.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/XE9680_H100_IB_4EA_MAC_info.sh b/data/scripts/XE9680_H100_IB_4EA_MAC_info.sh
index 763a1a1..bc86102 100644
--- a/data/scripts/XE9680_H100_IB_4EA_MAC_info.sh
+++ b/data/scripts/XE9680_H100_IB_4EA_MAC_info.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/XE9680_H200_IB_10EA_MAC_info.py b/data/scripts/XE9680_H200_IB_10EA_MAC_info.py
index 2a9d64b..0a307a1 100644
--- a/data/scripts/XE9680_H200_IB_10EA_MAC_info.py
+++ b/data/scripts/XE9680_H200_IB_10EA_MAC_info.py
@@ -1,244 +1,22 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
-
-import argparse
-import concurrent.futures as futures
-import os
-import re
-import subprocess
+"""
+레거시 호환성 래퍼 - XE9680_H200_IB_10EA_MAC_info.py
+실제 로직은 unified/collect_mac.py의 'xe9680_h200_10ea' 프로파일 사용
+"""
import sys
-import time
from pathlib import Path
-from typing import Dict, Optional, Tuple, List
-import logging
-# Configure logging
-logging.basicConfig(
- level=logging.INFO,
- format='%(asctime)s [INFO] root: %(message)s',
- datefmt='%Y-%m-%d %H:%M:%S'
-)
+script_dir = Path(__file__).parent
+sys.path.insert(0, str(script_dir))
-# ===== 설정: 기본 계정/비밀번호 (환경변수로 덮어쓰기 가능) =====
-IDRAC_USER = os.getenv("IDRAC_USER", "root")
-IDRAC_PASS = os.getenv("IDRAC_PASS", "calvin")
-
-BASE_DIR = Path(__file__).resolve().parent.parent
-OUTPUT_DIR = BASE_DIR / "idrac_info"
-OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
-
-MAC_RE = re.compile(r"([0-9A-Fa-f]{2}:){5}[0-9A-Fa-f]{2}")
-
-# --- 유틸: 명령 실행 ---
-def run(cmd: List[str]) -> Tuple[int, str]:
- try:
- p = subprocess.run(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True, check=False)
- return p.returncode, p.stdout or ""
- except Exception as e:
- return 1, f"__EXEC_ERROR__ {e}"
-
-# --- 파서: getsysinfo/swinventory/hwinventory 에서 필요한 값 추출 ---
-def extract_first_mac(text: str) -> Optional[str]:
- m = MAC_RE.search(text)
- return m.group(0) if m else None
-
-def parse_svc_tag(getsysinfo: str) -> Optional[str]:
- # 예: "SVC Tag = ABCDEF2"
- m = re.search(r"SVC\s*Tag\s*=\s*([^\s]+)", getsysinfo)
- return m.group(1).strip() if m else None
-
-def parse_specific_mac_in_getsysinfo(getsysinfo: str, key: str) -> Optional[str]:
- """
- key 예시:
- - "NIC.Integrated.1-1-1"
- - "NIC.Embedded.1-1-1"
- 해당 라인에서 MAC 패턴 추출
- """
- for line in getsysinfo.splitlines():
- if key in line:
- mac = extract_first_mac(line)
- if mac:
- return mac
- return None
-
-def parse_idrac_mac(getsysinfo: str) -> Optional[str]:
- """
- 원본 스크립트는 "MAC Address = " 를 grep 했습니다.
- 해당 라인(들) 중 첫 MAC을 사용합니다.
- """
- lines = [ln for ln in getsysinfo.splitlines() if "MAC Address" in ln]
- for ln in lines:
- mac = extract_first_mac(ln)
- if mac:
- return mac
- return None
-
-def parse_infiniband_slot_macs_from_swinventory(swinventory: str, slots: List[int]) -> Dict[int, Optional[str]]:
- """
- bash의 awk 트릭(해당 FQDD의 이전 줄에서 MAC 추출)을 그대로 재현:
- - swinventory 라인을 순회하면서 직전 라인을 prev로 저장
- - line이 'FQDD = InfiniBand.Slot.-1' 에 매치되면 prev에서 MAC 추출
- """
- want = {s: None for s in slots}
- prev = ""
- for line in swinventory.splitlines():
- m = re.search(r"FQDD\s*=\s*InfiniBand\.Slot\.(\d+)-1", line)
- if m:
- slot = int(m.group(1))
- if slot in want and want[slot] is None:
- want[slot] = extract_first_mac(prev) # 이전 줄에서 MAC
- prev = line
- return want
-
-def parse_memory_vendor_initials(hwinventory: str) -> str:
- """
- 원본: grep -A5 "DIMM" | grep "Manufacturer" | ... | sort | uniq | cut -c1
- - 간단화: DIMM 근처 5줄 윈도우에서 Manufacturer 라인 모으기
- - 제조사 첫 글자만 모아 중복 제거, 정렬 후 이어붙임
- """
- lines = hwinventory.splitlines()
- idxs = [i for i, ln in enumerate(lines) if "DIMM" in ln]
- vendors: List[str] = []
- for i in idxs:
- window = lines[i : i + 6] # 본문 포함 6줄(= -A5)
- for ln in window:
- if "Manufacturer" in ln and "=" in ln:
- v = ln.split("=", 1)[1].strip()
- if v:
- vendors.append(v)
- initials = sorted({v[0] for v in vendors if v})
- return "".join(initials)
-
-def parse_ssd_manufacturers(hwinventory: str) -> str:
- """
- 원본: grep -A3 "Disk.Bay" | grep "Manufacturer" | uniq
- - "Disk.Bay" 라인부터 3줄 윈도우 내 Manufacturer 라인 추출, 고유값 join
- """
- lines = hwinventory.splitlines()
- vendors: List[str] = []
- for i, ln in enumerate(lines):
- if "Disk.Bay" in ln:
- window = lines[i : i + 4]
- for w in window:
- if "Manufacturer" in w and "=" in w:
- v = w.split("=", 1)[1].strip()
- if v:
- vendors.append(v)
- uniq = sorted({v for v in vendors})
- return ", ".join(uniq)
-
-# --- 단일 IP 처리 ---
-def fetch_idrac_info_for_ip(ip: str) -> Tuple[str, bool, str]:
- """
- returns: (ip, success, message)
- success=True면 파일 저장 완료
- """
- ip = ip.strip()
- if not ip:
- return ip, False, "빈 라인"
-
- # racadm 호출
- base = ["racadm", "-r", ip, "-u", IDRAC_USER, "-p", IDRAC_PASS]
-
- rc1, getsysinfo = run(base + ["getsysinfo"])
- rc2, swinventory = run(base + ["swinventory"])
- rc3, hwinventory = run(base + ["hwinventory"])
-
- if rc1 != 0 and rc2 != 0 and rc3 != 0:
- return ip, False, f"모든 racadm 호출 실패:\n{getsysinfo or ''}\n{swinventory or ''}\n{hwinventory or ''}"
-
- svc_tag = parse_svc_tag(getsysinfo) if getsysinfo else None
- if not svc_tag:
- return ip, False, "서비스 태그(SVC Tag) 추출 실패"
-
- # 개별 필드 파싱
- integrated_1 = parse_specific_mac_in_getsysinfo(getsysinfo, "NIC.Integrated.1-1-1") if getsysinfo else None
- integrated_2 = parse_specific_mac_in_getsysinfo(getsysinfo, "NIC.Integrated.1-2-1") if getsysinfo else None
- integrated_3 = parse_specific_mac_in_getsysinfo(getsysinfo, "NIC.Integrated.1-3-1") if getsysinfo else None
- integrated_4 = parse_specific_mac_in_getsysinfo(getsysinfo, "NIC.Integrated.1-4-1") if getsysinfo else None
-
- onboard_1 = parse_specific_mac_in_getsysinfo(getsysinfo, "NIC.Embedded.1-1-1") if getsysinfo else None
- onboard_2 = parse_specific_mac_in_getsysinfo(getsysinfo, "NIC.Embedded.2-1-1") if getsysinfo else None
-
- idrac_mac = parse_idrac_mac(getsysinfo) if getsysinfo else None
-
- # InfiniBand.Slot.-1 MAC (이전 라인에서 MAC 추출) — 출력 순서 유지
- desired_slots = [38, 39, 37, 36, 32, 33, 34, 35, 31, 40]
- slot_macs = parse_infiniband_slot_macs_from_swinventory(swinventory, desired_slots) if swinventory else {s: None for s in desired_slots}
-
- memory_initials = parse_memory_vendor_initials(hwinventory) if hwinventory else ""
- ssd_vendors = parse_ssd_manufacturers(hwinventory) if hwinventory else ""
-
- # 저장
- out_path = OUTPUT_DIR / f"{svc_tag}.txt"
- with out_path.open("w", encoding="utf-8") as f:
- # 원본 스크립트와 동일한 출력 순서
- f.write(f"{svc_tag}\n")
- f.write(f"{integrated_1 or ''}\n")
- f.write(f"{integrated_2 or ''}\n")
- f.write(f"{integrated_3 or ''}\n")
- f.write(f"{integrated_4 or ''}\n")
- f.write(f"{onboard_1 or ''}\n")
- f.write(f"{onboard_2 or ''}\n")
- # 슬롯 고정 순서
- for sl in desired_slots:
- f.write(f"{slot_macs.get(sl) or ''}\n")
- f.write(f"{idrac_mac or ''}\n")
- f.write(f"{memory_initials}\n")
- f.write(f"{ssd_vendors}\n")
-
- return ip, True, f"저장: {out_path}"
-
-# --- 메인 ---
-def main():
- parser = argparse.ArgumentParser(description="iDRAC 정보 수집 (Python 포팅)")
- parser.add_argument("ip_file", help="IP 주소 목록 파일 (줄 단위)")
- parser.add_argument("--workers", type=int, default=20, help="병렬 스레드 수 (기본 20)")
- args = parser.parse_args()
-
- ip_file = Path(args.ip_file)
- if not ip_file.exists():
- logging.error(f"IP 파일이 존재하지 않습니다: {ip_file}")
- sys.exit(1)
-
- with ip_file.open("r", encoding="utf-8") as f:
- ips = [ln.strip() for ln in f if ln.strip()]
-
- if not ips:
- logging.error("IP 목록이 비어 있습니다.")
- sys.exit(1)
-
- logging.info(f"[시작] 총 {len(ips)}대, workers={args.workers}, IDRAC_USER={IDRAC_USER}")
-
- t0 = time.time()
- ok = 0
- fail = 0
-
- # 병렬 수집
- with futures.ThreadPoolExecutor(max_workers=args.workers) as ex:
- futs = {ex.submit(fetch_idrac_info_for_ip, ip): ip for ip in ips}
- for fut in futures.as_completed(futs):
- ip = futs[fut]
- try:
- _ip, success, msg = fut.result()
- prefix = "[OK] " if success else "[FAIL] "
- if success:
- logging.info(prefix + ip + " - " + msg)
- else:
- logging.error(prefix + ip + " - " + msg)
- ok += int(success)
- fail += int(not success)
- except Exception as e:
- logging.error(f"[EXC] {ip} - {e}")
- fail += 1
-
- dt = int(time.time() - t0)
- h, r = divmod(dt, 3600)
- m, s = divmod(r, 60)
-
- logging.info("\n정보 수집 완료.")
- logging.info(f"성공 {ok}대 / 실패 {fail}대")
- logging.info(f"수집 완료 시간: {h} 시간, {m} 분, {s} 초.")
+from unified.collect_mac import main as unified_main
if __name__ == "__main__":
- main()
\ No newline at end of file
+ if len(sys.argv) < 2:
+ print("Usage: python XE9680_H200_IB_10EA_MAC_info.py ")
+ sys.exit(1)
+
+ # xe9680_h200_10ea 프로파일 사용
+ sys.argv.append("xe9680_h200_10ea")
+ unified_main()
\ No newline at end of file
diff --git a/data/scripts/XE9680_H200_IB_10EA_MAC_info.sh b/data/scripts/XE9680_H200_IB_10EA_MAC_info.sh
index f0dbe09..b0fbbfc 100644
--- a/data/scripts/XE9680_H200_IB_10EA_MAC_info.sh
+++ b/data/scripts/XE9680_H200_IB_10EA_MAC_info.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/collect_gpu.py b/data/scripts/collect_gpu.py
new file mode 100644
index 0000000..9a17c96
--- /dev/null
+++ b/data/scripts/collect_gpu.py
@@ -0,0 +1,210 @@
+import os
+import re
+import sys
+import yaml
+import argparse
+import subprocess
+import logging
+import fnmatch
+from pathlib import Path
+from concurrent.futures import ThreadPoolExecutor, as_completed
+from dotenv import load_dotenv, find_dotenv
+
+# Configure logging
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] root: %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+
+# .env 로드
+load_dotenv(find_dotenv())
+
+IDRAC_USER = os.getenv("IDRAC_USER")
+IDRAC_PASS = os.getenv("IDRAC_PASS")
+
+# 경로 설정
+BASE_DIR = Path(__file__).resolve().parent
+PROFILES_FILE = BASE_DIR / "profiles" / "gpu_profiles.yaml"
+OUTPUT_DIR = BASE_DIR.parent / "temp" / "staging"
+
+def load_profile(profile_name="default"):
+ """Load specific profile from gpu_profiles.yaml"""
+ if not PROFILES_FILE.exists():
+ logging.warning(f"Profile file not found at {PROFILES_FILE}. Using defaults.")
+ return {}
+
+ try:
+ with open(PROFILES_FILE, 'r', encoding='utf-8') as f:
+ data = yaml.safe_load(f)
+ profiles = data.get('profiles', {})
+ return profiles.get(profile_name, {})
+ except Exception as e:
+ logging.error(f"Error loading profile: {e}")
+ return {}
+
+def resolve_output_dir() -> Path:
+ OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
+ return OUTPUT_DIR
+
+def parse_gpu_serials_from_hwinventory(hwinv_text: str, target_slots=None) -> dict:
+ """
+ Parse GPU serials and filter based on target_slots patterns.
+ target_slots: list of glob patterns (e.g. ["Video.Slot.*"])
+ """
+ results = {}
+ blocks = re.split(r"\n\s*\n", hwinv_text, flags=re.MULTILINE)
+
+ for block in blocks:
+ # Check if it looks like a Video/GPU block
+ if not re.search(r"\[?InstanceID:\s*Video\.Slot\.", block):
+ continue
+
+ # Extract FQDD
+ fqdd = None
+ m_fqdd = re.search(r"^FQDD\s*=\s*([^\r\n]+)", block, flags=re.MULTILINE)
+ if m_fqdd:
+ fqdd = m_fqdd.group(1).strip()
+ else:
+ m_hdr = re.search(r"\[InstanceID:\s*(Video\.Slot\.[^\]\r\n]+)\]", block)
+ if m_hdr:
+ fqdd = m_hdr.group(1).strip()
+
+ if not fqdd:
+ continue
+
+ # Filtering logic
+ if target_slots:
+ matched = False
+ for pattern in target_slots:
+ # fnmatch supports simple unix shell style wildcards (*, ?, [], etc)
+ if fnmatch.fnmatch(fqdd, pattern):
+ matched = True
+ break
+ if not matched:
+ continue
+
+ # Extract SerialNumber
+ m_sn = re.search(r"^SerialNumber\s*=\s*([^\r\n]+)", block, flags=re.MULTILINE)
+ serial = m_sn.group(1).strip() if m_sn else "Not Found"
+
+ results[fqdd] = serial
+
+ return results
+
+def get_slot_index(fqdd: str):
+ """
+ Extract logic for sorting.
+ Format usually: Video.Slot.X-Y -> returns (X, Y) tuple
+ """
+ m = re.search(r"Video\.Slot\.(\d+)-(\d+)", fqdd)
+ if m:
+ return (int(m.group(1)), int(m.group(2)))
+ m_simple = re.search(r"Video\.Slot\.(\d+)", fqdd)
+ if m_simple:
+ return (int(m_simple.group(1)), 0)
+ return (float('inf'), float('inf'))
+
+def fetch_idrac_info(idrac_ip: str, output_dir: Path, gpu_settings: dict) -> None:
+ try:
+ # 1. Get SVC Tag
+ cmd_getsysinfo = [
+ "racadm", "-r", idrac_ip, "-u", IDRAC_USER or "", "-p", IDRAC_PASS or "", "getsysinfo"
+ ]
+ # execute without shell=True for security (if possible), but subprocess.getoutput uses shell
+ # Here we use subprocess.run for better control if needed, but sticking to logic similar to original for now
+ # Ideally: result = subprocess.run(cmd_getsysinfo, capture_output=True, text=True)
+ # But let's stick to getoutput wrapper logic or use run compatible way
+
+ # Using subprocess.run is safer and modern
+ res_sys = subprocess.run(cmd_getsysinfo, capture_output=True, text=True, encoding='utf-8', errors='ignore')
+ getsysinfo = res_sys.stdout
+
+ svc_tag_match = re.search(r"SVC Tag\s*=\s*(\S+)", getsysinfo)
+ svc_tag = svc_tag_match.group(1) if svc_tag_match else None
+
+ if not svc_tag:
+ logging.error(f"Failed to retrieve SVC Tag for IP: {idrac_ip}")
+ return
+
+ # 2. Get Hardware Inventory
+ cmd_hwinv = [
+ "racadm", "-r", idrac_ip, "-u", IDRAC_USER or "", "-p", IDRAC_PASS or "", "hwinventory"
+ ]
+ res_inv = subprocess.run(cmd_hwinv, capture_output=True, text=True, encoding='utf-8', errors='ignore')
+ hwinv_text = res_inv.stdout
+
+ # 3. Parse and Filter
+ target_slots = gpu_settings.get('target_slots', ["Video.Slot.*"])
+ gpu_map = parse_gpu_serials_from_hwinventory(hwinv_text, target_slots)
+
+ # 4. Sort
+ sort_order = gpu_settings.get('sort_order', 'slot_index')
+
+ if sort_order == 'slot_index':
+ sorted_keys = sorted(gpu_map.keys(), key=lambda k: (get_slot_index(k), k))
+ elif sort_order == 'serial':
+ sorted_keys = sorted(gpu_map.keys(), key=lambda k: gpu_map[k])
+ else:
+ sorted_keys = sorted(gpu_map.keys())
+
+ # 5. Write Output (Text format)
+ output_file = output_dir / f"{svc_tag}.txt"
+ with output_file.open("w", encoding="utf-8", newline="\n") as f:
+ f.write(f"{svc_tag}\n")
+
+ if not gpu_map:
+ f.write("No matching GPU inventory found.\n")
+ return
+
+ for fqdd in sorted_keys:
+ serial = gpu_map[fqdd]
+ f.write(f"{fqdd}: {serial}\n")
+
+ # Serials only line
+ serials_only = [gpu_map[k] for k in sorted_keys if gpu_map[k] != "Not Found"]
+ if serials_only:
+ f.write(f"SERIALS: {';'.join(serials_only)}\n")
+
+ logging.info(f"Saved {output_file}")
+
+ except Exception as e:
+ logging.error(f"Error processing IP {idrac_ip}: {e}")
+
+def main():
+ parser = argparse.ArgumentParser(description="Collect GPU Serial Info")
+ parser.add_argument("ip_file", help="File containing list of IP addresses")
+ parser.add_argument("--profile", default="default", help="Profile name from gpu_profiles.yaml")
+
+ args = parser.parse_args()
+
+ ip_path = Path(args.ip_file)
+ if not ip_path.is_file():
+ logging.error(f"IP file {args.ip_file} does not exist.")
+ return
+
+ # Load Profile
+ profile = load_profile(args.profile)
+ logging.info(f"Loaded profile: {args.profile}")
+
+ gpu_settings = profile.get('gpu_settings', {})
+
+ output_dir = resolve_output_dir()
+
+ with ip_path.open("r", encoding="utf-8") as file:
+ ip_addresses = [line.strip() for line in file if line.strip()]
+
+ with ThreadPoolExecutor(max_workers=50) as executor:
+ future_to_ip = {
+ executor.submit(fetch_idrac_info, ip, output_dir, gpu_settings): ip
+ for ip in ip_addresses
+ }
+ for future in as_completed(future_to_ip):
+ ip = future_to_ip[future]
+ try:
+ future.result()
+ except Exception as e:
+ logging.error(f"Error on {ip}: {e}")
+
+if __name__ == "__main__":
+ main()
diff --git a/data/scripts/collect_idrac_info.py b/data/scripts/collect_idrac_info.py
index 778ff62..3c89111 100644
--- a/data/scripts/collect_idrac_info.py
+++ b/data/scripts/collect_idrac_info.py
@@ -23,7 +23,14 @@ logging.basicConfig(
IDRAC_USER = os.getenv("IDRAC_USER", "root")
IDRAC_PASS = os.getenv("IDRAC_PASS", "calvin")
-OUTPUT_DIR = Path("idrac_info")
+# Resolve output dir relative to script location or CWD
+BASE_DIR = Path(__file__).resolve().parent
+if BASE_DIR.name == "scripts":
+ DATA_DIR = BASE_DIR.parent
+else:
+ DATA_DIR = Path("data").resolve()
+
+OUTPUT_DIR = DATA_DIR / "temp" / "staging"
OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
MAC_RE = re.compile(r"([0-9A-Fa-f]{2}:){5}[0-9A-Fa-f]{2}")
diff --git a/data/scripts/core/__init__.py b/data/scripts/core/__init__.py
new file mode 100644
index 0000000..272f646
--- /dev/null
+++ b/data/scripts/core/__init__.py
@@ -0,0 +1,4 @@
+"""
+공통 라이브러리 패키지
+"""
+__version__ = "1.0.0"
diff --git a/data/scripts/core/__pycache__/__init__.cpython-312.pyc b/data/scripts/core/__pycache__/__init__.cpython-312.pyc
new file mode 100644
index 0000000..1518478
Binary files /dev/null and b/data/scripts/core/__pycache__/__init__.cpython-312.pyc differ
diff --git a/data/scripts/core/__pycache__/idrac_client.cpython-312.pyc b/data/scripts/core/__pycache__/idrac_client.cpython-312.pyc
new file mode 100644
index 0000000..7b3ca03
Binary files /dev/null and b/data/scripts/core/__pycache__/idrac_client.cpython-312.pyc differ
diff --git a/data/scripts/core/__pycache__/parsers.cpython-312.pyc b/data/scripts/core/__pycache__/parsers.cpython-312.pyc
new file mode 100644
index 0000000..265eae9
Binary files /dev/null and b/data/scripts/core/__pycache__/parsers.cpython-312.pyc differ
diff --git a/data/scripts/core/idrac_client.py b/data/scripts/core/idrac_client.py
new file mode 100644
index 0000000..85a9efa
--- /dev/null
+++ b/data/scripts/core/idrac_client.py
@@ -0,0 +1,129 @@
+"""
+iDRAC 클라이언트 - racadm 명령 실행 및 결과 캐싱
+"""
+from typing import Optional, Dict, Tuple
+import subprocess
+import os
+import logging
+
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] root: %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+
+
+class IDRACClient:
+ """
+ racadm 명령 실행 및 결과 캐싱을 담당하는 클라이언트
+ """
+
+ def __init__(self, ip: str, user: str = None, password: str = None):
+ """
+ Args:
+ ip: iDRAC IP 주소
+ user: iDRAC 사용자명 (기본값: 환경변수 IDRAC_USER 또는 'root')
+ password: iDRAC 비밀번호 (기본값: 환경변수 IDRAC_PASS 또는 'calvin')
+ """
+ self.ip = ip
+ self.user = user or os.getenv("IDRAC_USER", "root")
+ self.password = password or os.getenv("IDRAC_PASS", "calvin")
+ self._cache: Dict[str, str] = {} # 중복 호출 방지 캐시
+
+ def run_command(self, command: str) -> Tuple[int, str]:
+ """
+ racadm 명령 실행
+
+ Args:
+ command: 실행할 racadm 명령 (예: "getsysinfo", "get bios.BiosBootSettings")
+
+ Returns:
+ (return_code, output) 튜플
+ """
+ cmd = f"racadm -r {self.ip} -u {self.user} -p {self.password} {command}"
+
+ try:
+ result = subprocess.run(
+ cmd,
+ shell=True,
+ capture_output=True,
+ text=True,
+ check=False,
+ timeout=30 # 30초 타임아웃
+ )
+ return result.returncode, result.stdout
+ except subprocess.TimeoutExpired:
+ logging.error(f"[{self.ip}] 명령 타임아웃: {command}")
+ return 1, ""
+ except Exception as e:
+ logging.error(f"[{self.ip}] 명령 실행 오류: {e}")
+ return 1, f"Error: {e}"
+
+ def get_sysinfo(self) -> str:
+ """
+ getsysinfo 명령 실행 (캐싱)
+
+ Returns:
+ getsysinfo 출력 결과
+ """
+ if "sysinfo" not in self._cache:
+ _, output = self.run_command("getsysinfo")
+ self._cache["sysinfo"] = output
+ return self._cache["sysinfo"]
+
+ def get_hwinventory(self) -> str:
+ """
+ hwinventory 명령 실행 (캐싱)
+
+ Returns:
+ hwinventory 출력 결과
+ """
+ if "hwinventory" not in self._cache:
+ _, output = self.run_command("hwinventory")
+ self._cache["hwinventory"] = output
+ return self._cache["hwinventory"]
+
+ def get_swinventory(self) -> str:
+ """
+ swinventory 명령 실행 (캐싱)
+
+ Returns:
+ swinventory 출력 결과
+ """
+ if "swinventory" not in self._cache:
+ _, output = self.run_command("swinventory")
+ self._cache["swinventory"] = output
+ return self._cache["swinventory"]
+
+
+ def get_infiniband_pages(self) -> str:
+ """
+ InfiniBand 설정 페이지 목록 조회 (InfiniBand.VndrConfigPage)
+
+ Returns:
+ racadm get InfiniBand.VndrConfigPage 출력
+ """
+ if "infiniband_pages" not in self._cache:
+ _, output = self.run_command("get InfiniBand.VndrConfigPage")
+ self._cache["infiniband_pages"] = output
+ return self._cache["infiniband_pages"]
+
+ def get_infiniband_page_detail(self, page_number: str) -> str:
+ """
+ 특정 InfiniBand 설정 페이지 상세 조회
+
+ Args:
+ page_number: 페이지 번호 (예: "1")
+
+ Returns:
+ racadm get InfiniBand.VndrConfigPage.{page_number} 출력
+ """
+ cache_key = f"infiniband_page_{page_number}"
+ if cache_key not in self._cache:
+ _, output = self.run_command(f"get InfiniBand.VndrConfigPage.{page_number}")
+ self._cache[cache_key] = output
+ return self._cache[cache_key]
+
+ def clear_cache(self):
+ """캐시 초기화"""
+ self._cache.clear()
diff --git a/data/scripts/core/parsers.py b/data/scripts/core/parsers.py
new file mode 100644
index 0000000..003c3cd
--- /dev/null
+++ b/data/scripts/core/parsers.py
@@ -0,0 +1,291 @@
+"""
+racadm 출력 파싱 유틸리티
+"""
+import re
+from typing import List, Optional, Dict, Tuple
+
+
+class InfoParser:
+ """racadm 명령 출력 파싱 유틸리티"""
+
+ # Word boundary to ensure we don't match partial GUIDs (which are longer)
+ MAC_PATTERN = re.compile(r"\b([0-9A-Fa-f]{2}:){5}[0-9A-Fa-f]{2}\b")
+
+ @staticmethod
+ def extract_service_tag(sysinfo: str) -> Optional[str]:
+ """
+ 서비스 태그 추출
+
+ Args:
+ sysinfo: getsysinfo 명령 출력
+
+ Returns:
+ 서비스 태그 또는 None
+ """
+ m = re.search(r"SVC\s*Tag\s*=\s*(\S+)", sysinfo, re.IGNORECASE)
+ return m.group(1).strip() if m else None
+
+ @staticmethod
+ def extract_nic_macs(sysinfo: str, nic_patterns: List[str]) -> Dict[str, Optional[str]]:
+ """
+ NIC MAC 주소 추출
+
+ Args:
+ sysinfo: getsysinfo 명령 출력
+ nic_patterns: NIC 패턴 리스트 (예: ["NIC.Integrated.1-1-1", "NIC.Embedded.1-1-1"])
+
+ Returns:
+ {pattern: mac_address} 딕셔너리
+ """
+ results = {}
+ for pattern in nic_patterns:
+ for line in sysinfo.splitlines():
+ if pattern in line:
+ mac = InfoParser.MAC_PATTERN.search(line)
+ results[pattern] = mac.group(0) if mac else None
+ break
+ else:
+ results[pattern] = None
+ return results
+
+ @staticmethod
+ def extract_nic_macs_from_hwinventory(hwinventory: str, nic_patterns: List[str]) -> Dict[str, Optional[str]]:
+ """
+ hwinventory에서 NIC MAC 주소 추출
+
+ Args:
+ hwinventory: hwinventory 명령 출력
+ nic_patterns: NIC 패턴 리스트 (예: ["NIC.Integrated.1-1-1", "NIC.Slot.1-1-1"])
+
+ Returns:
+ {pattern: mac_address} 딕셔너리
+ """
+ results = {pattern: None for pattern in nic_patterns}
+
+ # hwinventory를 블록 단위로 분리 (빈 줄로 구분)
+ blocks = re.split(r"\n\s*\n", hwinventory)
+
+ for block in blocks:
+ # 블록 내에서 FQDD 또는 InstanceID 확인
+ fqdd = None
+
+ # FQDD = NIC.Integrated.1-1-1 또는 [InstanceID: NIC.Integrated.1-1-1] 형식 찾기
+ m_fqdd = re.search(r"FQDD\s*=\s*(\S+)", block, re.IGNORECASE)
+ if m_fqdd:
+ fqdd = m_fqdd.group(1).strip()
+ # FQDD 키워드가 없을 경우를 대비해 InstanceID 헤더도 확인
+ elif "[InstanceID:" in block:
+ m_inst = re.search(r"InstanceID:\s*([^\]]+)", block)
+ if m_inst:
+ fqdd = m_inst.group(1).strip()
+
+ if not fqdd:
+ continue
+
+ # 요청된 패턴 중 하나라도 포함하는지 확인 (정확한 매칭을 위해 수정 가능하나, 보통 포함 관계면 충분)
+ # 여기서는 패턴이 FQDD와 정확히 일치하거나 FQDD가 패턴을 포함하는 경우를 찾음
+ matched_pattern = None
+ for pattern in nic_patterns:
+ # 대소문자 무시 비교
+ if pattern.lower() == fqdd.lower():
+ matched_pattern = pattern
+ break
+
+ # 정확히 일치하는 패턴을 못 찾았다면 다음 블록으로
+ if not matched_pattern:
+ continue
+
+ # MAC 주소 찾기
+ # Ethernet Address = AA:BB:CC:DD:EE:FF
+ # CurrentMACAddress = AA:BB:CC:DD:EE:FF
+ # MAC Address = AA:BB:CC:DD:EE:FF
+ mac_match = InfoParser.MAC_PATTERN.search(block)
+
+ if mac_match:
+ results[matched_pattern] = mac_match.group(0)
+
+ return results
+
+ @staticmethod
+ def extract_idrac_mac(sysinfo: str) -> Optional[str]:
+ """
+ iDRAC MAC 주소 추출
+
+ Args:
+ sysinfo: getsysinfo 명령 출력
+
+ Returns:
+ iDRAC MAC 주소 또는 None
+ """
+ for line in sysinfo.splitlines():
+ if "MAC Address" in line:
+ mac = InfoParser.MAC_PATTERN.search(line)
+ if mac:
+ return mac.group(0)
+ return None
+
+ @staticmethod
+ def extract_vendors(hwinventory: str, component_prefix: str) -> List[str]:
+ """
+ 컴포넌트 벤더 추출
+
+ Args:
+ hwinventory: hwinventory 명령 출력
+ component_prefix: 컴포넌트 접두사 ("DIMM", "Disk.Bay", "BOSS" 등)
+
+ Returns:
+ 벤더 리스트 (중복 제거, 정렬됨)
+ """
+ vendors = set()
+ blocks = re.split(r"\n\s*\n", hwinventory)
+
+ for block in blocks:
+ # Check if this block is for the target component using InstanceID or FQDD
+ is_target_component = False
+
+ # Check InstanceID header: [InstanceID: DIMM.Socket.A1]
+ if f"[InstanceID: {component_prefix}" in block:
+ is_target_component = True
+
+ # Also check FQDD line if InstanceID header check fails (fallback)
+ elif not is_target_component:
+ m_fqdd = re.search(r"^FQDD\s*=\s*(\S+)", block, re.MULTILINE)
+ if m_fqdd and component_prefix in m_fqdd.group(1):
+ is_target_component = True
+
+ if is_target_component:
+ m = re.search(r"Manufacturer\s*=\s*(.+)", block, re.IGNORECASE)
+ if m:
+ vendor = m.group(1).strip()
+ # Filter out "Dell Inc." if user considers it wrong/noise for these components?
+ # The user specifically complained about "Dell Inc." being WRONG.
+ # However, if the DIMM *is* Dell, we should report it.
+ # But the likely cause of "Dell Inc." appearing when it shouldn't is the System block match.
+ # With this stricter check, the System block (InstanceID: System.Embedded.1) will NOT match "DIMM".
+ vendors.add(vendor)
+
+ return sorted(vendors)
+
+ @staticmethod
+ def extract_infiniband_page_map(pages_output: str) -> List[Tuple[str, str]]:
+ """
+ InfiniBand 페이지 번호와 슬롯 번호 매핑 추출
+
+ Args:
+ pages_output: get InfiniBand.VndrConfigPage 출력
+
+ Returns:
+ [(page_number, slot_number), ...] 리스트
+ """
+ # InfiniBand.VndrConfigPage.1 [Key=InfiniBand.Slot.38-1#VndrConfigPage]
+ matches = re.findall(
+ r"InfiniBand\.VndrConfigPage\.(\d+)\s+\[Key=InfiniBand\.Slot\.(\d+)-\d+#VndrConfigPage]",
+ pages_output
+ )
+ return matches
+
+ @staticmethod
+ def extract_port_guid(page_detail: str) -> Optional[str]:
+ """
+ InfiniBand 페이지 상세에서 PortGUID 추출
+
+ Args:
+ page_detail: get InfiniBand.VndrConfigPage.{N} 출력
+
+ Returns:
+ PortGUID 값 또는 None
+ """
+ m = re.search(r"PortGUID=(\S+)", page_detail)
+ return m.group(1) if m else None
+
+ @staticmethod
+ def extract_value_by_pattern(text: str, pattern: str) -> Optional[str]:
+ """
+ 패턴으로 값 추출 (= 뒤의 값)
+
+ Args:
+ text: 검색할 텍스트
+ pattern: 검색 패턴
+
+ Returns:
+ 추출된 값 또는 None
+ """
+ for line in text.splitlines():
+ if pattern.lower() in line.lower():
+ if '=' in line:
+ return line.split('=', 1)[1].strip()
+ return None
+
+ @staticmethod
+ def extract_infiniband_macs_from_swinventory(swinventory: str, target_slots: List[int]) -> Dict[int, str]:
+ """
+ swinventory에서 InfiniBand 슬롯의 MAC 주소 추출
+ (FQDD 라인 바로 윗줄에 MAC 주소가 있다는 가정 - 레거시 스크립트 로직)
+
+ Args:
+ swinventory: swinventory 명령 출력
+ target_slots: 추출할 슬롯 번호 리스트
+
+ Returns:
+ {slot: mac_address} 딕셔너리
+ """
+ results = {}
+ prev_line = ""
+
+ # 슬롯별 패턴 미리 생성 (예: "FQDD = InfiniBand.Slot.31-1")
+ slot_patterns = {slot: f"FQDD = InfiniBand.Slot.{slot}-1" for slot in target_slots}
+
+ for line in swinventory.splitlines():
+ for slot, pattern in slot_patterns.items():
+ if pattern in line:
+ # 이전 라인에서 MAC 찾기
+ mac = InfoParser.MAC_PATTERN.search(prev_line)
+ if mac:
+ results[slot] = mac.group(0)
+ prev_line = line
+
+ return results
+
+ @staticmethod
+ def extract_gpu_serials(hwinventory: str) -> Dict[str, str]:
+ """
+ iDRAC hwinventory 전체 텍스트에서 GPU(Video.Slot.*) 블록을 찾아
+ {FQDD(or InstanceID): SerialNumber} 딕셔너리로 반환.
+
+ Args:
+ hwinventory: hwinventory 명령 출력
+
+ Returns:
+ {fqdd: serial} 딕셔너리
+ """
+ results = {}
+
+ # 빈 줄 기준 블록 분할(여러 개의 개행을 하나의 경계로)
+ blocks = re.split(r"\n\s*\n", hwinventory, flags=re.MULTILINE)
+
+ for block in blocks:
+ # GPU(Video) 블록만 처리
+ # Video.Slot.X 또는 유사 패턴
+ if not re.search(r"\[?InstanceID:\s*Video\.Slot\.", block):
+ continue
+
+ # FQDD 우선, 없으면 [InstanceID: ...]에서 추출
+ fqdd = None
+ m_fqdd = re.search(r"^FQDD\s*=\s*([^\r\n]+)", block, flags=re.MULTILINE)
+ if m_fqdd:
+ fqdd = m_fqdd.group(1).strip()
+ else:
+ m_hdr = re.search(r"\[InstanceID:\s*(Video\.Slot\.[^\]\r\n]+)\]", block)
+ if m_hdr:
+ fqdd = m_hdr.group(1).strip()
+
+ if not fqdd:
+ continue
+
+ # SerialNumber 추출
+ m_sn = re.search(r"^SerialNumber\s*=\s*([^\r\n]+)", block, flags=re.MULTILINE)
+ serial = m_sn.group(1).strip() if m_sn else "Not Found"
+
+ results[fqdd] = serial
+
+ return results
diff --git a/data/scripts/profiles/gpu_profiles.yaml b/data/scripts/profiles/gpu_profiles.yaml
new file mode 100644
index 0000000..4d47f2a
--- /dev/null
+++ b/data/scripts/profiles/gpu_profiles.yaml
@@ -0,0 +1,22 @@
+# GPU 서버 정보 수집 프로파일 (GUID + GPU Serial)
+profiles:
+ default:
+ description: "기본 GPU 시리얼 수집 설정"
+ # GUID 관련 설정 (제거됨)
+ # slot_priority: [38, 39, 37, 36, 32, 33, 34, 35, 31, 40]
+
+ # GPU Serial 관련 설정
+ gpu_settings:
+ target_slots: ["Video.Slot.*"]
+ sort_order: "slot_index" # slot_index, serial, etc.
+
+ output_format: "combined"
+
+ h100_cluster:
+ description: "H100 클러스터용 설정"
+ slot_priority: [1, 2, 3, 4]
+ gpu_settings:
+ target_slots: ["Video.Slot.0-1", "Video.Slot.1-1"]
+ sort_order: "slot_index"
+
+ output_format: "combined"
diff --git a/data/scripts/profiles/guid_profiles.yaml b/data/scripts/profiles/guid_profiles.yaml
new file mode 100644
index 0000000..e64462f
--- /dev/null
+++ b/data/scripts/profiles/guid_profiles.yaml
@@ -0,0 +1,11 @@
+# GUID 수집 프로파일 정의
+profiles:
+ default:
+ description: "기본 GUID 수집"
+ slot_priority: [38, 39, 37, 36, 32, 33, 34, 35, 31, 40]
+ output_format: "combined" # combined 또는 individual
+
+ custom_priority:
+ description: "사용자 정의 슬롯 우선순위"
+ slot_priority: [] # 런타임에 환경변수 GUID_SLOT_PRIORITY에서 읽음
+ output_format: "combined"
diff --git a/data/scripts/profiles/mac_profiles.yaml b/data/scripts/profiles/mac_profiles.yaml
new file mode 100644
index 0000000..d357b98
--- /dev/null
+++ b/data/scripts/profiles/mac_profiles.yaml
@@ -0,0 +1,107 @@
+profiles:
+ 16G_R760XD2:
+ description: 기본 MAC 수집 (Integrated + Embedded)
+ exclude_boss: true
+ include_disk_vendor: true
+ include_idrac_mac: true
+ include_memory_vendor: true
+ nic_patterns:
+ - NIC.Integrated.1-1-1
+ - NIC.Integrated.1-2-1
+ - NIC.Slot.3-1-1
+ - NIC.Slot.3-2-1
+ - NIC.Embedded.1-1-1
+ - NIC.Embedded.2-1-1
+ 16G_T8/T8A:
+ description: 새 프로파일
+ extends: default
+ 16G_TYPE4,6:
+ description: 기본 MAC 수집 (Integrated + Embedded)
+ exclude_boss: true
+ include_disk_vendor: true
+ include_idrac_mac: true
+ include_memory_vendor: true
+ nic_patterns:
+ - NIC.Integrated.1-1-1
+ - NIC.Integrated.1-2-1
+ - NIC.Embedded.1-1-1
+ - NIC.Embedded.2-1-1
+ 16G_TYPE8,8A:
+ description: 기본 MAC 수집 (Integrated + Embedded)
+ exclude_boss: true
+ include_disk_vendor: true
+ include_idrac_mac: true
+ include_memory_vendor: true
+ nic_patterns:
+ - NIC.Integrated.1-1-1
+ - NIC.Integrated.1-2-1
+ - NIC.Embedded.1-1-1
+ - NIC.Embedded.2-1-1
+ TY11_60ea:
+ description: 기본 MAC 수집 (Integrated + Embedded)
+ exclude_boss: true
+ include_disk_vendor: true
+ include_idrac_mac: true
+ include_memory_vendor: true
+ nic_patterns:
+ - NIC.Integrated.1-1-1
+ - NIC.Integrated.1-2-1
+ - NIC.Slot.1-1-1
+ - NIC.Slot.1-2-1
+ - NIC.Slot.2-1-1
+ - NIC.Slot.2-2-1
+ - NIC.Embedded.1-1-1
+ - NIC.Embedded.2-1-1
+ default:
+ description: 기본 MAC 수집 (Integrated + Embedded)
+ exclude_boss: true
+ include_disk_vendor: true
+ include_idrac_mac: true
+ include_memory_vendor: true
+ nic_patterns:
+ - NIC.Integrated.1-1-1
+ - NIC.Integrated.1-2-1
+ - NIC.Embedded.1-1-1
+ - NIC.Embedded.2-1-1
+ jp_54ea:
+ description: JP 54EA 서버
+ extends: default
+ jp_type11a:
+ description: JP_TYPE11A
+ extends: default
+ nic_patterns:
+ - NIC.Integrated.1-1-1
+ - NIC.Integrated.1-2-1
+ - NIC.Embedded.1-1-1
+ - NIC.Embedded.2-1-1
+ - NIC.Slot.1-1-1
+ - NIC.Slot.1-2-1
+ - NIC.Slot.2-1-1
+ - NIC.Slot.2-2-1
+ sp_18ea:
+ description: SP 18EA 서버
+ extends: default
+ type11:
+ description: TYPE11 서버
+ extends: default
+ xe9680_h200_10ea:
+ description: XE9680 H200 10EA InfiniBand
+ extends: default
+ infiniband_slots:
+ - 38
+ - 39
+ - 37
+ - 36
+ - 32
+ - 33
+ - 34
+ - 35
+ - 31
+ - 40
+ nic_patterns:
+ - NIC.Integrated.1-1-1
+ - NIC.Integrated.1-2-1
+ - NIC.Integrated.1-3-1
+ - NIC.Integrated.1-4-1
+ - NIC.Embedded.1-1-1
+ - NIC.Embedded.2-1-1
diff --git a/data/scripts/profiles/server_info_profiles.yaml b/data/scripts/profiles/server_info_profiles.yaml
new file mode 100644
index 0000000..6a630e6
--- /dev/null
+++ b/data/scripts/profiles/server_info_profiles.yaml
@@ -0,0 +1,676 @@
+profiles:
+ JYH_AMD:
+ bios_settings:
+ - command: get bios.BiosBootSettings
+ name: BIOS Boot Mode
+ pattern: BootMode
+ - command: get bios.SysProfileSettings
+ name: System Profile
+ pattern: SysProfile=
+ - command: get bios.SysProfileSettings
+ name: Memory Frequency
+ pattern: MemFrequency
+ - command: get bios.SysProfileSettings
+ name: Turbo Boost
+ pattern: ProcTurboMode
+ - command: get bios.SysProfileSettings
+ name: C-States
+ pattern: ProcCStates
+ - command: get bios.ProcSettings
+ name: Logical Processor
+ pattern: LogicalProc
+ - command: get bios.ProcSettings
+ name: Virtualization Technology
+ pattern: ProcVirtualization
+ - command: get bios.MemSettings
+ name: DramRefreshDelay
+ pattern: DramRefreshDelay
+ - command: get bios.ProcSettings
+ name: x2APIC Mode
+ pattern: ProcX2Apic
+ - command: get bios.MemSettings
+ name: DIMM Self Healing
+ pattern: PPROnUCE
+ - command: get bios.MemSettings
+ name: Correctable Error Logging
+ pattern: CECriticalSEL
+ - command: get System.ThermalSettings
+ name: Thermal Profile Optimization
+ pattern: ThermalProfile
+ - command: get Bios.IntegratedDevices
+ name: SR-IOV Global Enable
+ pattern: SriovGlobalEnable
+ - command: get bios.MiscSettings
+ name: F1/F2 Prompt on Error
+ pattern: ErrPrompt
+ - command: get iDRAC.ASRConfig
+ name: ASR Config
+ pattern: Enable=
+ - command: get Bios.IntegratedDevices.OsWatchdogTimer
+ name: Os watchdof timer
+ pattern: OswatchdogTimer=
+ description: 기본 서버 정보 수집 (BIOS, iDRAC, RAID)
+ extends: minimal
+ firmware:
+ - command: get NIC.FrmwImgMenu.1
+ name: NIC(XE810) Integrated Firmware
+ pattern: '#FamilyVersion'
+ - command: get NIC.FrmwImgMenu.3
+ name: NIC(BCM5720) Integrated Firmware
+ pattern: '#FamilyVersion'
+ - command: hwinventory
+ name: RAID Controller Firmware
+ pattern: ControllerFirmwareVersion
+ idrac_settings:
+ - command: get iDRAC.Time.Timezone
+ name: Timezone
+ pattern: Timezone
+ - command: get iDRAC.CurrentNIC
+ name: IPMI LAN Selection
+ pattern: ActiveNIC
+ - command: get iDRAC.CurrentIPv4
+ name: IPMI IPv4 DHCP
+ pattern: DHCPEnable
+ - command: get iDRAC.CurrentIPv6
+ name: IPMI IPv6 Enable
+ pattern: Enable=
+ - command: get iDRAC.Redfish.Enable
+ name: Redfish Support
+ pattern: Enable=
+ - command: get iDRAC.SSH
+ name: SSH Support
+ pattern: Enable=
+ - command: get iDRAC.USERDomain.1.Name
+ name: AD User Domain Name
+ pattern: Name
+ - command: get iDRAC.ActiveDirectory.DomainController1
+ name: SC Server Address
+ pattern: DomainController1
+ - command: get iDRAC.SysLog.SysLogEnable
+ name: Remote Log (syslog)
+ pattern: SysLogEnable
+ - command: get iDRAC.SysLog.Server1
+ name: Syslog Server 1
+ pattern: Server1
+ - command: get iDRAC.SysLog.Server2
+ name: Syslog Server 2
+ pattern: Server2
+ - command: get iDRAC.SysLog.Port
+ name: Syslog Port
+ pattern: Port
+ - command: get iDRAC.VirtualConsole.Port
+ name: VirtualConsole Port
+ pattern: Port
+ raid_settings:
+ - command: hwinventory
+ name: BOSS ProductName
+ pattern: ProductName = BOSS
+ - command: hwinventory
+ name: RAID Types
+ pattern: RAIDTypes
+ - command: hwinventory
+ name: StripeSize
+ pattern: StripeSize
+ - command: hwinventory
+ name: ReadCachePolicy
+ pattern: ReadCachePolicy
+ - command: hwinventory
+ name: WriteCachePolicy
+ pattern: WriteCachePolicy
+ - command: get STORAGE.Controller.1
+ name: CheckConsistencyMode
+ pattern: CheckConsistencyMode
+ R760XD2_Server_info:
+ bios_settings:
+ - command: get bios.BiosBootSettings
+ name: BIOS Boot Mode
+ pattern: BootMode
+ - command: get bios.SysProfileSettings
+ name: System Profile
+ pattern: SysProfile=
+ - command: get bios.SysProfileSettings
+ name: CPU Power Management
+ pattern: EnergyPerformanceBias
+ - command: get bios.SysProfileSettings
+ name: Memory Frequency
+ pattern: MemFrequency
+ - command: get bios.SysProfileSettings
+ name: Turbo Boost
+ pattern: ProcTurboMode
+ - command: get bios.SysProfileSettings
+ name: C1E
+ pattern: ProcC1E
+ - command: get bios.SysProfileSettings
+ name: C-States
+ pattern: ProcCStates
+ - command: get bios.SysProfileSettings
+ name: Monitor/Mwait
+ pattern: MonitorMwait
+ - command: get bios.ProcSettings
+ name: Logical Processor
+ pattern: LogicalProc
+ - command: get bios.ProcSettings
+ name: Virtualization Technology
+ pattern: ProcVirtualization
+ - command: get bios.ProcSettings
+ name: LLC Prefetch
+ pattern: LlcPrefetch
+ - command: get bios.ProcSettings
+ name: x2APIC Mode
+ pattern: ProcX2Apic
+ - command: get bios.MemSettings
+ name: Node Interleaving
+ pattern: NodeInterleave
+ - command: get bios.MemSettings
+ name: DIMM Self Healing
+ pattern: PPROnUCE
+ - command: get bios.MemSettings
+ name: Correctable Error Logging
+ pattern: CECriticalSEL
+ - command: get System.ThermalSettings
+ name: Thermal Profile Optimization
+ pattern: ThermalProfile
+ - command: get Bios.IntegratedDevices
+ name: SR-IOV Global Enable
+ pattern: SriovGlobalEnable
+ - command: get bios.MiscSettings
+ name: F1/F2 Prompt on Error
+ pattern: ErrPrompt
+ - command: get iDRAC.ASRConfig
+ name: ASR Config
+ pattern: Enable=
+ - command: get Bios.IntegratedDevices.OsWatchdogTimer
+ name: Os watchdof timer
+ pattern: OswatchdogTimer=
+ description: 기본 서버 정보 수집 (BIOS, iDRAC, RAID)
+ extends: minimal
+ firmware:
+ - command: get NIC.FrmwImgMenu.1
+ name: NIC Integrated Firmware
+ pattern: '#FamilyVersion'
+ - command: hwinventory
+ name: RAID Controller Firmware
+ pattern: ControllerFirmwareVersion
+ - command: hwinventory
+ name: BOSS Controller Firmware
+ pattern: ControllerFirmwareVersion = 2
+ idrac_settings:
+ - command: get iDRAC.Time.Timezone
+ name: Timezone
+ pattern: Timezone
+ - command: get iDRAC.CurrentNIC
+ name: IPMI LAN Selection
+ pattern: ActiveNIC
+ - command: get iDRAC.CurrentIPv4
+ name: IPMI IPv4 DHCP
+ pattern: DHCPEnable
+ - command: get iDRAC.CurrentIPv6
+ name: IPMI IPv6 Enable
+ pattern: Enable=
+ - command: get iDRAC.Redfish.Enable
+ name: Redfish Support
+ pattern: Enable=
+ - command: get iDRAC.SSH
+ name: SSH Support
+ pattern: Enable=
+ - command: get iDRAC.USERDomain.1.Name
+ name: AD User Domain Name
+ pattern: Name
+ - command: get iDRAC.ActiveDirectory.DomainController1
+ name: SC Server Address
+ pattern: DomainController1
+ - command: get iDRAC.SysLog.SysLogEnable
+ name: Remote Log (syslog)
+ pattern: SysLogEnable
+ - command: get iDRAC.SysLog.Server1
+ name: Syslog Server 1
+ pattern: Server1
+ - command: get iDRAC.SysLog.Server2
+ name: Syslog Server 2
+ pattern: Server2
+ - command: get iDRAC.SysLog.Port
+ name: Syslog Port
+ pattern: Port
+ - command: get iDRAC.VirtualConsole.Port
+ name: VirtualConsole Port
+ pattern: Port
+ raid_settings:
+ - command: hwinventory
+ name: RAID ProductName
+ pattern: ProductName = PERC
+ - command: hwinventory
+ name: BOSS ProductName
+ pattern: ProductName = BOSS
+ - command: hwinventory
+ name: RAID Types
+ pattern: RAIDTypes
+ - command: hwinventory
+ name: StripeSize
+ pattern: StripeSize
+ - command: hwinventory
+ name: ReadCachePolicy
+ pattern: ReadCachePolicy
+ - command: hwinventory
+ name: WriteCachePolicy
+ pattern: WriteCachePolicy
+ - command: get STORAGE.Controller.1
+ name: CheckConsistencyMode
+ pattern: CheckConsistencyMode
+ - command: get STORAGE.Controller.1
+ name: PatrolReadRate
+ pattern: PatrolReadRate
+ amd_server:
+ bios_settings:
+ - command: get bios.ProcSettings
+ name: AMD SMT Mode
+ pattern: SmtMode
+ - command: get bios.ProcSettings
+ name: AMD IOMMU
+ pattern: Iommu
+ description: AMD 서버 전용 프로파일
+ extends: default
+ default:
+ bios_settings:
+ - command: get bios.BiosBootSettings
+ name: BIOS Boot Mode
+ pattern: BootMode
+ - command: get bios.SysProfileSettings
+ name: System Profile
+ pattern: SysProfile=
+ - command: get bios.SysProfileSettings
+ name: CPU Power Management
+ pattern: EnergyPerformanceBias
+ - command: get bios.SysProfileSettings
+ name: Memory Frequency
+ pattern: MemFrequency
+ - command: get bios.SysProfileSettings
+ name: Turbo Boost
+ pattern: ProcTurboMode
+ - command: get bios.SysProfileSettings
+ name: C1E
+ pattern: ProcC1E
+ - command: get bios.SysProfileSettings
+ name: C-States
+ pattern: ProcCStates
+ - command: get bios.SysProfileSettings
+ name: Monitor/Mwait
+ pattern: MonitorMwait
+ - command: get bios.ProcSettings
+ name: Logical Processor
+ pattern: LogicalProc
+ - command: get bios.ProcSettings
+ name: Virtualization Technology
+ pattern: ProcVirtualization
+ - command: get bios.ProcSettings
+ name: LLC Prefetch
+ pattern: LlcPrefetch
+ - command: get bios.ProcSettings
+ name: x2APIC Mode
+ pattern: ProcX2Apic
+ - command: get bios.MemSettings
+ name: Node Interleaving
+ pattern: NodeInterleave
+ - command: get bios.MemSettings
+ name: DIMM Self Healing
+ pattern: PPROnUCE
+ - command: get bios.MemSettings
+ name: Correctable Error Logging
+ pattern: CECriticalSEL
+ - command: get System.ThermalSettings
+ name: Thermal Profile Optimization
+ pattern: ThermalProfile
+ - command: get Bios.IntegratedDevices
+ name: SR-IOV Global Enable
+ pattern: SriovGlobalEnable
+ - command: get bios.MiscSettings
+ name: F1/F2 Prompt on Error
+ pattern: ErrPrompt
+ description: 기본 서버 정보 수집 (BIOS, iDRAC, RAID)
+ extends: minimal
+ firmware:
+ - command: get NIC.FrmwImgMenu.1
+ name: NIC Integrated Firmware
+ pattern: '#FamilyVersion'
+ - command: get NIC.FrmwImgMenu.5
+ name: OnBoard NIC Firmware
+ pattern: '#FamilyVersion'
+ - command: hwinventory
+ name: RAID Controller Firmware
+ pattern: ControllerFirmwareVersion
+ idrac_settings:
+ - command: get iDRAC.Time.Timezone
+ name: Timezone
+ pattern: Timezone
+ - command: get iDRAC.CurrentNIC
+ name: IPMI LAN Selection
+ pattern: ActiveNIC
+ - command: get iDRAC.CurrentIPv4
+ name: IPMI IPv4 DHCP
+ pattern: DHCPEnable
+ - command: get iDRAC.CurrentIPv6
+ name: IPMI IPv6 Enable
+ pattern: Enable=
+ - command: get iDRAC.Redfish.Enable
+ name: Redfish Support
+ pattern: Enable=
+ - command: get iDRAC.SSH
+ name: SSH Support
+ pattern: Enable=
+ - command: get iDRAC.USERDomain.1.Name
+ name: AD User Domain Name
+ pattern: Name
+ - command: get iDRAC.ActiveDirectory.DomainController1
+ name: SC Server Address
+ pattern: DomainController1
+ - command: get iDRAC.SysLog.SysLogEnable
+ name: Remote Log (syslog)
+ pattern: SysLogEnable
+ - command: get iDRAC.SysLog.Server1
+ name: Syslog Server 1
+ pattern: Server1
+ - command: get iDRAC.SysLog.Server2
+ name: Syslog Server 2
+ pattern: Server2
+ - command: get iDRAC.SysLog.Port
+ name: Syslog Port
+ pattern: Port
+ - command: get iDRAC.VirtualConsole.Port
+ name: VirtualConsole Port
+ pattern: Port
+ raid_settings:
+ - command: hwinventory
+ name: RAID ProductName
+ pattern: ProductName = PERC
+ - command: hwinventory
+ name: RAID Types
+ pattern: RAIDTypes
+ - command: hwinventory
+ name: StripeSize
+ pattern: StripeSize
+ - command: hwinventory
+ name: ReadCachePolicy
+ pattern: ReadCachePolicy
+ - command: hwinventory
+ name: WriteCachePolicy
+ pattern: WriteCachePolicy
+ - command: get STORAGE.Controller.1
+ name: CheckConsistencyMode
+ pattern: CheckConsistencyMode
+ - command: get STORAGE.Controller.1
+ name: PatrolReadRate
+ pattern: PatrolReadRate
+ intel_server:
+ description: Intel 서버 전용 프로파일
+ extends: default
+ minimal:
+ description: 최소 정보만 수집 (펌웨어 버전만)
+ firmware:
+ - command: getsysinfo
+ name: SVC Tag
+ pattern: SVC Tag
+ - command: getsysinfo
+ name: BIOS Firmware
+ pattern: System BIOS Version
+ - command: getsysinfo
+ name: iDRAC Firmware
+ pattern: Firmware Version
+ 문병철매니저님_AMD_T8A:
+ bios_settings:
+ - command: get bios.BiosBootSettings
+ name: BIOS Boot Mode
+ pattern: BootMode
+ - command: get bios.SysProfileSettings
+ name: System Profile
+ pattern: SysProfile=
+ - command: get bios.SysProfileSettings
+ name: Memory Frequency
+ pattern: MemFrequency
+ - command: get bios.SysProfileSettings
+ name: Turbo Boost
+ pattern: ProcTurboMode
+ - command: get bios.SysProfileSettings
+ name: C-States
+ pattern: ProcCStates
+ - command: get bios.ProcSettings
+ name: Logical Processor
+ pattern: LogicalProc
+ - command: get bios.ProcSettings
+ name: Virtualization Technology
+ pattern: ProcVirtualization
+ - command: get bios.MemSettings
+ name: DramRefreshDelay
+ pattern: DramRefreshDelay
+ - command: get bios.ProcSettings
+ name: x2APIC Mode
+ pattern: ProcX2Apic
+ - command: get bios.MemSettings
+ name: DIMM Self Healing
+ pattern: PPROnUCE
+ - command: get bios.MemSettings
+ name: Correctable Error Logging
+ pattern: CECriticalSEL
+ - command: get System.ThermalSettings
+ name: Thermal Profile Optimization
+ pattern: ThermalProfile
+ - command: get Bios.IntegratedDevices
+ name: SR-IOV Global Enable
+ pattern: SriovGlobalEnable
+ - command: get bios.MiscSettings
+ name: F1/F2 Prompt on Error
+ pattern: ErrPrompt
+ - command: get iDRAC.ASRConfig
+ name: ASR Config
+ pattern: Enable=
+ - command: get Bios.IntegratedDevices.OsWatchdogTimer
+ name: Os watchdof timer
+ pattern: OswatchdogTimer=
+ description: 기본 서버 정보 수집 (BIOS, iDRAC, RAID)
+ extends: minimal
+ firmware:
+ - command: get NIC.FrmwImgMenu.1
+ name: NIC(XE810) Integrated Firmware
+ pattern: '#FamilyVersion'
+ - command: get NIC.FrmwImgMenu.3
+ name: NIC(BCM5720) Integrated Firmware
+ pattern: '#FamilyVersion'
+ - command: hwinventory
+ name: RAID Controller Firmware
+ pattern: ControllerFirmwareVersion
+ idrac_settings:
+ - command: get iDRAC.Time.Timezone
+ name: Timezone
+ pattern: Timezone
+ - command: get iDRAC.CurrentNIC
+ name: IPMI LAN Selection
+ pattern: ActiveNIC
+ - command: get iDRAC.CurrentIPv4
+ name: IPMI IPv4 DHCP
+ pattern: DHCPEnable
+ - command: get iDRAC.CurrentIPv6
+ name: IPMI IPv6 Enable
+ pattern: Enable=
+ - command: get iDRAC.Redfish.Enable
+ name: Redfish Support
+ pattern: Enable=
+ - command: get iDRAC.SSH
+ name: SSH Support
+ pattern: Enable=
+ - command: get iDRAC.USERDomain.1.Name
+ name: AD User Domain Name
+ pattern: Name
+ - command: get iDRAC.ActiveDirectory.DomainController1
+ name: SC Server Address
+ pattern: DomainController1
+ - command: get iDRAC.SysLog.SysLogEnable
+ name: Remote Log (syslog)
+ pattern: SysLogEnable
+ - command: get iDRAC.SysLog.Server1
+ name: Syslog Server 1
+ pattern: Server1
+ - command: get iDRAC.SysLog.Server2
+ name: Syslog Server 2
+ pattern: Server2
+ - command: get iDRAC.SysLog.Port
+ name: Syslog Port
+ pattern: Port
+ - command: get iDRAC.VirtualConsole.Port
+ name: VirtualConsole Port
+ pattern: Port
+ raid_settings:
+ - command: hwinventory
+ name: BOSS ProductName
+ pattern: ProductName = BOSS
+ - command: hwinventory
+ name: RAID Types
+ pattern: RAIDTypes
+ - command: hwinventory
+ name: StripeSize
+ pattern: StripeSize
+ - command: hwinventory
+ name: ReadCachePolicy
+ pattern: ReadCachePolicy
+ - command: hwinventory
+ name: WriteCachePolicy
+ pattern: WriteCachePolicy
+ - command: get STORAGE.Controller.1
+ name: CheckConsistencyMode
+ pattern: CheckConsistencyMode
+ 문병철매니저님_INTEL_SERVER:
+ bios_settings:
+ - command: get bios.BiosBootSettings
+ name: BIOS Boot Mode
+ pattern: BootMode
+ - command: get bios.SysProfileSettings
+ name: System Profile
+ pattern: SysProfile=
+ - command: get bios.SysProfileSettings
+ name: CPU Power Management
+ pattern: EnergyPerformanceBias
+ - command: get bios.SysProfileSettings
+ name: Memory Frequency
+ pattern: MemFrequency
+ - command: get bios.SysProfileSettings
+ name: Turbo Boost
+ pattern: ProcTurboMode
+ - command: get bios.SysProfileSettings
+ name: C1E
+ pattern: ProcC1E
+ - command: get bios.SysProfileSettings
+ name: C-States
+ pattern: ProcCStates
+ - command: get bios.SysProfileSettings
+ name: Monitor/Mwait
+ pattern: MonitorMwait
+ - command: get bios.ProcSettings
+ name: Logical Processor
+ pattern: LogicalProc
+ - command: get bios.ProcSettings
+ name: Virtualization Technology
+ pattern: ProcVirtualization
+ - command: get bios.ProcSettings
+ name: LLC Prefetch
+ pattern: LlcPrefetch
+ - command: get bios.ProcSettings
+ name: x2APIC Mode
+ pattern: ProcX2Apic
+ - command: get bios.MemSettings
+ name: Node Interleaving
+ pattern: NodeInterleave
+ - command: get bios.MemSettings
+ name: DIMM Self Healing
+ pattern: PPROnUCE
+ - command: get bios.MemSettings
+ name: Correctable Error Logging
+ pattern: CECriticalSEL
+ - command: get System.ThermalSettings
+ name: Thermal Profile Optimization
+ pattern: ThermalProfile
+ - command: get Bios.IntegratedDevices
+ name: SR-IOV Global Enable
+ pattern: SriovGlobalEnable
+ - command: get bios.MiscSettings
+ name: F1/F2 Prompt on Error
+ pattern: ErrPrompt
+ - command: get iDRAC.ASRConfig
+ name: ASR Config
+ pattern: Enable=
+ - command: get Bios.IntegratedDevices.OsWatchdogTimer
+ name: Os watchdof timer
+ pattern: OswatchdogTimer=
+ description: 기본 서버 정보 수집 (BIOS, iDRAC, RAID)
+ extends: minimal
+ firmware:
+ - command: get NIC.FrmwImgMenu.1
+ name: NIC Integrated Firmware
+ pattern: '#FamilyVersion'
+ - command: hwinventory
+ name: RAID Controller Firmware
+ pattern: ControllerFirmwareVersion
+ - command: hwinventory
+ name: BOSS Controller Firmware
+ pattern: ControllerFirmwareVersion = 2
+ idrac_settings:
+ - command: get iDRAC.Time.Timezone
+ name: Timezone
+ pattern: Timezone
+ - command: get iDRAC.CurrentNIC
+ name: IPMI LAN Selection
+ pattern: ActiveNIC
+ - command: get iDRAC.CurrentIPv4
+ name: IPMI IPv4 DHCP
+ pattern: DHCPEnable
+ - command: get iDRAC.CurrentIPv6
+ name: IPMI IPv6 Enable
+ pattern: Enable=
+ - command: get iDRAC.Redfish.Enable
+ name: Redfish Support
+ pattern: Enable=
+ - command: get iDRAC.SSH
+ name: SSH Support
+ pattern: Enable=
+ - command: get iDRAC.USERDomain.1.Name
+ name: AD User Domain Name
+ pattern: Name
+ - command: get iDRAC.ActiveDirectory.DomainController1
+ name: SC Server Address
+ pattern: DomainController1
+ - command: get iDRAC.SysLog.SysLogEnable
+ name: Remote Log (syslog)
+ pattern: SysLogEnable
+ - command: get iDRAC.SysLog.Server1
+ name: Syslog Server 1
+ pattern: Server1
+ - command: get iDRAC.SysLog.Server2
+ name: Syslog Server 2
+ pattern: Server2
+ - command: get iDRAC.SysLog.Port
+ name: Syslog Port
+ pattern: Port
+ - command: get iDRAC.VirtualConsole.Port
+ name: VirtualConsole Port
+ pattern: Port
+ raid_settings:
+ - command: hwinventory
+ name: RAID ProductName
+ pattern: ProductName = PERC
+ - command: hwinventory
+ name: BOSS ProductName
+ pattern: ProductName = BOSS
+ - command: hwinventory
+ name: RAID Types
+ pattern: RAIDTypes
+ - command: hwinventory
+ name: StripeSize
+ pattern: StripeSize
+ - command: hwinventory
+ name: ReadCachePolicy
+ pattern: ReadCachePolicy
+ - command: hwinventory
+ name: WriteCachePolicy
+ pattern: WriteCachePolicy
+ - command: get STORAGE.Controller.1
+ name: CheckConsistencyMode
+ pattern: CheckConsistencyMode
+ - command: get STORAGE.Controller.1
+ name: PatrolReadRate
+ pattern: PatrolReadRate
diff --git a/data/scripts/set_PatrolReadRate.sh b/data/scripts/set_PatrolReadRate.sh
index 7eb7008..18d1315 100644
--- a/data/scripts/set_PatrolReadRate.sh
+++ b/data/scripts/set_PatrolReadRate.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/set_PatrolReadRate_jobs.sh b/data/scripts/set_PatrolReadRate_jobs.sh
index ee1d921..7d7c02d 100644
--- a/data/scripts/set_PatrolReadRate_jobs.sh
+++ b/data/scripts/set_PatrolReadRate_jobs.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/set_VirtualConsole.sh b/data/scripts/set_VirtualConsole.sh
index 350236c..a76ade7 100644
--- a/data/scripts/set_VirtualConsole.sh
+++ b/data/scripts/set_VirtualConsole.sh
@@ -18,7 +18,7 @@ if [ ! -f "$IP_FILE" ]; then
fi
# 정보 저장 디렉터리 설정
-OUTPUT_DIR="idrac_info"
+OUTPUT_DIR="$(dirname "$0")/../temp/staging"
mkdir -p $OUTPUT_DIR
# iDRAC 정보를 가져오는 함수 정의
diff --git a/data/scripts/unified/__pycache__/collect_server_info.cpython-312.pyc b/data/scripts/unified/__pycache__/collect_server_info.cpython-312.pyc
new file mode 100644
index 0000000..9862421
Binary files /dev/null and b/data/scripts/unified/__pycache__/collect_server_info.cpython-312.pyc differ
diff --git a/data/scripts/unified/collect_gpu.py b/data/scripts/unified/collect_gpu.py
new file mode 100644
index 0000000..fb13164
--- /dev/null
+++ b/data/scripts/unified/collect_gpu.py
@@ -0,0 +1,123 @@
+#!/usr/bin/env python3
+"""
+통합 GPU 시리얼 수집 스크립트
+hwinventory에서 Video.Slot 정보 수집
+"""
+import sys
+import os
+import re
+from pathlib import Path
+from concurrent.futures import ThreadPoolExecutor
+import logging
+
+sys.path.insert(0, str(Path(__file__).parent.parent))
+from core.idrac_client import IDRACClient
+from core.parsers import InfoParser
+
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] root: %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+
+def collect_gpu_for_ip(ip: str, output_dir: Path) -> tuple:
+ """단일 IP에 대한 GPU Serial 정보 수집"""
+ try:
+ logging.info(f"[{ip}] GPU 정보 수집 시작")
+
+ client = IDRACClient(ip)
+
+ # 1. Get Service Tag
+ sysinfo = client.get_sysinfo()
+ svc_tag = InfoParser.extract_service_tag(sysinfo)
+
+ if not svc_tag:
+ return ip, False, "서비스 태그 추출 실패"
+
+ # 2. Get Hardware Inventory
+ hwinventory = client.get_hwinventory()
+
+ # 3. Parse GPU Serials
+ gpu_map = InfoParser.extract_gpu_serials(hwinventory)
+
+ # 4. Write File
+ output_file = output_dir / f"{svc_tag}.txt"
+
+ # 정렬 로직 (Legacy GPU_Serial_v1.py 유지)
+ def slot_key(k: str):
+ m = re.search(r"Video\.Slot\.(\d+)-(\d+)", k)
+ if m:
+ return (int(m.group(1)), int(m.group(2)))
+ return (1_000_000, 1_000_000, k)
+
+ with output_file.open('w', encoding='utf-8', newline='\n') as f:
+ f.write(f"{svc_tag}\n")
+
+ if not gpu_map:
+ f.write("No GPU(Video) inventory found or SerialNumber not present.\n")
+ return ip, True, f"저장: {output_file.name} (GPU 없음)"
+
+ # Write individual slots
+ sorted_keys = sorted(gpu_map.keys(), key=slot_key)
+ for fqdd in sorted_keys:
+ serial = gpu_map[fqdd]
+ f.write(f"{fqdd}: {serial}\n")
+
+ # Write summary line
+ serials_only = [gpu_map[k] for k in sorted_keys if gpu_map[k] != "Not Found"]
+ if serials_only:
+ f.write(f"SERIALS: {';'.join(serials_only)}\n")
+
+ return ip, True, f"저장: {output_file.name} ({len(serials_only)}개 발견)"
+
+ except Exception as e:
+ logging.error(f"[{ip}] 오류: {e}")
+ return ip, False, f"오류: {e}"
+
+
+def main():
+ if len(sys.argv) < 2:
+ print("Usage: python collect_gpu.py ")
+ sys.exit(1)
+
+ ip_file = Path(sys.argv[1])
+
+ if not ip_file.exists():
+ logging.error(f"IP 파일 없음: {ip_file}")
+ sys.exit(1)
+
+ # 출력 디렉토리
+ # 출력 디렉토리 (스크립트 위치 기준)
+ script_dir = Path(__file__).resolve().parent
+ data_root = script_dir.parent.parent
+ output_dir = data_root / "temp" / "staging"
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ # IP 목록 읽기
+ ips = [line.strip() for line in ip_file.read_text(encoding='utf-8').splitlines() if line.strip()]
+
+ if not ips:
+ logging.error("IP 목록이 비어 있습니다.")
+ sys.exit(1)
+
+ logging.info(f"총 {len(ips)}대 GPU 정보 수집 시작")
+
+ # 병렬 처리
+ ok, fail = 0, 0
+ with ThreadPoolExecutor(max_workers=20) as executor:
+ futures = {executor.submit(collect_gpu_for_ip, ip, output_dir): ip for ip in ips}
+
+ for future in futures:
+ ip, success, msg = future.result()
+ if success:
+ logging.info(f"[OK] {ip} - {msg}")
+ ok += 1
+ else:
+ logging.error(f"[FAIL] {ip} - {msg}")
+ fail += 1
+
+ logging.info(f"완료: 성공 {ok}대 / 실패 {fail}대")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/data/scripts/unified/collect_guid.py b/data/scripts/unified/collect_guid.py
new file mode 100644
index 0000000..ace330d
--- /dev/null
+++ b/data/scripts/unified/collect_guid.py
@@ -0,0 +1,216 @@
+#!/usr/bin/env python3
+"""
+통합 GUID 수집 스크립트
+프로파일 기반으로 InfiniBand GUID 수집
+"""
+import sys
+import yaml
+import os
+from pathlib import Path
+from concurrent.futures import ThreadPoolExecutor
+import logging
+
+sys.path.insert(0, str(Path(__file__).parent.parent))
+from core.idrac_client import IDRACClient
+from core.parsers import InfoParser
+
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] root: %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+
+
+def load_profile(profile_name: str) -> dict:
+ """프로파일 로드"""
+ profile_file = Path(__file__).parent.parent / "profiles" / "guid_profiles.yaml"
+
+ if not profile_file.exists():
+ logging.error(f"프로파일 파일 없음: {profile_file}")
+ sys.exit(1)
+
+ with open(profile_file, 'r', encoding='utf-8') as f:
+ profiles = yaml.safe_load(f)['profiles']
+
+ profile = profiles.get(profile_name, profiles['default'])
+
+ # 환경변수에서 슬롯 우선순위 읽기 (custom_priority 프로파일용)
+ if not profile.get('slot_priority'):
+ env_priority = os.getenv("GUID_SLOT_PRIORITY", "")
+ if env_priority:
+ profile['slot_priority'] = [int(s.strip()) for s in env_priority.split(",") if s.strip()]
+ else:
+ profile['slot_priority'] = profiles['default']['slot_priority']
+
+ return profile
+
+
+def collect_guid_for_ip(ip: str, profile: dict, output_dir: Path) -> tuple:
+ """단일 IP에 대한 GUID 정보 수집 (PortGUID_v1.py 로직 기반)"""
+ try:
+ logging.info(f"[{ip}] DEBUG: Running Unified GUID Script v2.2 (PortGUID_v1 Logic)")
+
+ # IDRAC credentials from env or default
+ idrac_user = os.getenv("IDRAC_USER", "root")
+ idrac_pass = os.getenv("IDRAC_PASS", "calvin")
+
+ # 1. Get Service Tag (using raw subprocess like v1)
+ cmd_getsysinfo = [
+ "racadm", "-r", ip, "-u", idrac_user, "-p", idrac_pass, "getsysinfo"
+ ]
+ # v1 uses subprocess.getoutput which runs with shell=True/standard shell behavior.
+ # Here we replicate it or use subprocess.run with capture_output.
+ # PortGUID_v1 uses: getsysinfo = subprocess.getoutput(" ".join(cmd_getsysinfo))
+
+ # Using subprocess.run for better control but mimicking the command structure
+ import subprocess
+ import re
+
+ try:
+ # mimic v1: Use the exact same command string style
+ proc_info = subprocess.run(cmd_getsysinfo, capture_output=True, text=True, timeout=60)
+ getsysinfo = proc_info.stdout
+ except Exception as e:
+ return ip, False, f"SVC Tag 수집 실패: {e}"
+
+ svc_tag_match = re.search(r"SVC Tag\s*=\s*(\S+)", getsysinfo)
+ svc_tag = svc_tag_match.group(1) if svc_tag_match else None
+
+ if not svc_tag:
+ return ip, False, "서비스 태그 추출 실패 (Regex miss)"
+
+ # 2. Get InfiniBand Page List
+ cmd_list = [
+ "racadm", "-r", ip, "-u", idrac_user, "-p", idrac_pass, "get", "InfiniBand.VndrConfigPage"
+ ]
+ proc_list = subprocess.run(cmd_list, capture_output=True, text=True, timeout=60)
+ output_list = proc_list.stdout
+
+ # 3. Parse Page Map
+ matches = re.findall(
+ r"InfiniBand\.VndrConfigPage\.(\d+)\s+\[Key=InfiniBand\.Slot\.(\d+)-\d+#VndrConfigPage]",
+ output_list
+ )
+
+ slot_to_guid = {}
+ # 4. Fetch Detail for each page
+ for number, slot in matches:
+ cmd_detail = [
+ "racadm", "-r", ip, "-u", idrac_user, "-p", idrac_pass,
+ "get", f"InfiniBand.VndrConfigPage.{number}"
+ ]
+ proc_detail = subprocess.run(cmd_detail, capture_output=True, text=True, timeout=60)
+ output_detail = proc_detail.stdout
+
+ match_guid = re.search(r"PortGUID=(\S+)", output_detail)
+ port_guid = match_guid.group(1) if match_guid else None
+
+ if port_guid:
+ slot_to_guid[int(slot)] = port_guid
+
+ # 5. Determine Priority (Preference: Profile > Env > Default(v1 logic))
+ # Logic from PortGUID_v1.py:
+ # if total_slots == 4: order = ...
+ # elif total_slots == 10: order = ...
+
+ # We will use the profile's logic if available, but fallback to v1 logic if profile is 'default' and matches slot counts
+ desired_order = profile.get('slot_priority', [])
+
+ # If profile didn't specify (or empty), use v1 adaptive logic
+ if not desired_order:
+ total_slots = len(matches)
+ if total_slots == 4:
+ desired_order = [38, 37, 32, 34]
+ elif total_slots == 10:
+ desired_order = [38, 39, 37, 36, 32, 33, 34, 35, 31, 40]
+ else:
+ desired_order = [int(slot) for _, slot in matches] # Just collection order
+ logging.info(f"[{ip}] DEBUG: Using Adaptive Priority (Count={total_slots}): {desired_order}")
+ else:
+ logging.info(f"[{ip}] DEBUG: Using Profile Priority: {desired_order}")
+
+ # 6. Write File
+ output_file = output_dir / f"{svc_tag}.txt"
+ with output_file.open('w', encoding='utf-8', newline='\n') as f:
+ f.write(f"{svc_tag}\n")
+
+ hex_guid_list = []
+
+ # Write in desired order
+ for slot in desired_order:
+ guid = slot_to_guid.get(slot)
+ if guid:
+ f.write(f"Slot.{slot}: {guid}\n")
+
+ # Format
+ fmt_guid = guid.replace(':', '').upper()
+ if not fmt_guid.startswith("0X"):
+ fmt_guid = "0x" + fmt_guid
+ hex_guid_list.append(fmt_guid)
+
+ # Remaining slots (if any weren't in priority list)?
+ # v1 doesn't write them if not in priority list. We will stick to v1 behavior.
+
+ if profile.get('output_format', 'combined') == 'combined' and hex_guid_list:
+ f.write(f"GUID: {';'.join(hex_guid_list)}\n")
+
+ return ip, True, f"저장: {output_file.name} ({len(hex_guid_list)}개 GUID/v1_Logic)"
+
+ except Exception as e:
+ logging.error(f"[{ip}] 오류: {e}")
+ return ip, False, f"오류: {e}"
+
+
+def main():
+ if len(sys.argv) < 2:
+ print("Usage: python collect_guid.py [profile_name]")
+ print("Available profiles: default, custom_priority")
+ sys.exit(1)
+
+ ip_file = Path(sys.argv[1])
+ profile_name = sys.argv[2] if len(sys.argv) > 2 else "default"
+
+ if not ip_file.exists():
+ logging.error(f"IP 파일 없음: {ip_file}")
+ sys.exit(1)
+
+ # 프로파일 로드
+ profile = load_profile(profile_name)
+ logging.info(f"프로파일 사용: {profile_name} - {profile.get('description', '')}")
+ logging.info(f"슬롯 우선순위: {profile['slot_priority']}")
+
+ # 출력 디렉토리
+ # 출력 디렉토리 (스크립트 위치 기준)
+ script_dir = Path(__file__).resolve().parent
+ data_root = script_dir.parent.parent
+ output_dir = data_root / "temp" / "staging"
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ # IP 목록 읽기
+ ips = [line.strip() for line in ip_file.read_text(encoding='utf-8').splitlines() if line.strip()]
+
+ if not ips:
+ logging.error("IP 목록이 비어 있습니다.")
+ sys.exit(1)
+
+ logging.info(f"총 {len(ips)}대 처리 시작")
+
+ # 병렬 처리
+ ok, fail = 0, 0
+ with ThreadPoolExecutor(max_workers=20) as executor:
+ futures = {executor.submit(collect_guid_for_ip, ip, profile, output_dir): ip for ip in ips}
+
+ for future in futures:
+ ip, success, msg = future.result()
+ if success:
+ logging.info(f"[OK] {ip} - {msg}")
+ ok += 1
+ else:
+ logging.error(f"[FAIL] {ip} - {msg}")
+ fail += 1
+
+ logging.info(f"완료: 성공 {ok}대 / 실패 {fail}대")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/data/scripts/unified/collect_mac.py b/data/scripts/unified/collect_mac.py
new file mode 100644
index 0000000..bc4e3f9
--- /dev/null
+++ b/data/scripts/unified/collect_mac.py
@@ -0,0 +1,186 @@
+#!/usr/bin/env python3
+"""
+통합 MAC 수집 스크립트
+프로파일 기반으로 다양한 서버 타입 지원
+"""
+import sys
+import yaml
+from pathlib import Path
+from concurrent.futures import ThreadPoolExecutor
+import logging
+
+# core 모듈 임포트
+sys.path.insert(0, str(Path(__file__).parent.parent))
+from core.idrac_client import IDRACClient
+from core.parsers import InfoParser
+
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] root: %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+
+
+def load_profile(profile_name: str) -> dict:
+ """프로파일 로드 및 상속 처리"""
+ profile_file = Path(__file__).parent.parent / "profiles" / "mac_profiles.yaml"
+
+ if not profile_file.exists():
+ logging.error(f"프로파일 파일 없음: {profile_file}")
+ sys.exit(1)
+
+ with open(profile_file, 'r', encoding='utf-8') as f:
+ profiles = yaml.safe_load(f)['profiles']
+
+ profile = profiles.get(profile_name)
+ if not profile:
+ logging.error(f"프로파일 '{profile_name}' 없음. 사용 가능: {list(profiles.keys())}")
+ sys.exit(1)
+
+ # extends 처리
+ if 'extends' in profile:
+ base = profiles[profile['extends']].copy()
+ base.update(profile)
+ profile = base
+
+ return profile
+
+
+def collect_mac_for_ip(ip: str, profile: dict, output_dir: Path) -> tuple:
+ """단일 IP에 대한 MAC 정보 수집"""
+ try:
+ client = IDRACClient(ip)
+ parser = InfoParser()
+
+ # 데이터 수집
+ sysinfo = client.get_sysinfo()
+ hwinventory = client.get_hwinventory()
+
+ # 서비스 태그
+ svc_tag = parser.extract_service_tag(sysinfo)
+ if not svc_tag:
+ return ip, False, "서비스 태그 추출 실패"
+
+ # NIC MAC 주소
+ # NIC MAC 주소
+ # sysinfo보다 hwinventory가 더 상세한 정보(Slot NIC 등)를 포함하므로 변경
+ nic_macs = parser.extract_nic_macs_from_hwinventory(hwinventory, profile['nic_patterns'])
+
+ # iDRAC MAC
+ idrac_mac = None
+ if profile.get('include_idrac_mac'):
+ idrac_mac = parser.extract_idrac_mac(sysinfo)
+
+ # InfiniBand (선택적)
+ ib_guids = {}
+ if 'infiniband_slots' in profile:
+ # Legacy logic: Fetch from swinventory (checking previous line of FQDD)
+ swinventory = client.get_swinventory()
+ ib_guids = parser.extract_infiniband_macs_from_swinventory(swinventory, profile['infiniband_slots'])
+
+ # 벤더 정보
+ memory_vendors = []
+ disk_vendors = []
+
+ if profile.get('include_memory_vendor'):
+ memory_vendors = parser.extract_vendors(hwinventory, "DIMM")
+
+ if profile.get('include_disk_vendor'):
+ if profile.get('exclude_boss'):
+ # BOSS 제외한 디스크 벤더
+ all_vendors = set()
+ for prefix in ["Disk.Bay.", "Disk.M.2.", "Disk.Direct.", "Disk.Slot."]:
+ all_vendors.update(parser.extract_vendors(hwinventory, prefix))
+ disk_vendors = sorted(all_vendors)
+ else:
+ disk_vendors = parser.extract_vendors(hwinventory, "Disk.")
+
+ # 파일 저장
+ output_file = output_dir / f"{svc_tag}.txt"
+ with output_file.open('w', encoding='utf-8', newline='\n') as f:
+ f.write(f"{svc_tag}\n")
+
+ # NIC MAC (순서 유지)
+ for pattern in profile['nic_patterns']:
+ f.write(f"{nic_macs.get(pattern) or ''}\n")
+
+ # InfiniBand (있을 경우)
+ if ib_guids:
+ for slot in profile['infiniband_slots']:
+ f.write(f"{ib_guids.get(slot) or ''}\n")
+
+ # iDRAC MAC
+ if idrac_mac:
+ f.write(f"{idrac_mac}\n")
+
+ # 벤더 정보
+ for vendor in memory_vendors:
+ f.write(f"{vendor}\n")
+ for vendor in disk_vendors:
+ f.write(f"{vendor}\n")
+
+ return ip, True, f"저장: {output_file.name}"
+
+ except Exception as e:
+ logging.error(f"[{ip}] 오류: {e}")
+ return ip, False, f"오류: {e}"
+
+
+def main():
+ if len(sys.argv) < 2:
+ print("Usage: python collect_mac.py [profile_name]")
+ print("Available profiles: default, xe9680_h200_10ea, type11, jp_54ea, sp_18ea")
+ sys.exit(1)
+
+ ip_file = Path(sys.argv[1])
+ profile_name = sys.argv[2] if len(sys.argv) > 2 else "default"
+
+ if not ip_file.exists():
+ logging.error(f"IP 파일 없음: {ip_file}")
+ sys.exit(1)
+
+ # 프로파일 로드
+ profile = load_profile(profile_name)
+ logging.info(f"프로파일 사용: {profile_name} - {profile.get('description', '')}")
+
+ # 출력 디렉토리 (스크립트 위치 기준)
+ # script: data/scripts/unified/collect_mac.py -> data_root: data/
+ script_dir = Path(__file__).resolve().parent
+ data_root = script_dir.parent.parent
+ output_dir = data_root / "temp" / "staging"
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ # IP 목록 읽기
+ ips = [line.strip() for line in ip_file.read_text(encoding='utf-8').splitlines() if line.strip()]
+
+ if not ips:
+ logging.error("IP 목록이 비어 있습니다.")
+ sys.exit(1)
+
+ logging.info(f"총 {len(ips)}대 처리 시작")
+
+ # 병렬 처리
+ ok, fail = 0, 0
+ with ThreadPoolExecutor(max_workers=20) as executor:
+ futures = {executor.submit(collect_mac_for_ip, ip, profile, output_dir): ip for ip in ips}
+
+ for future in futures:
+ ip, success, msg = future.result()
+ if success:
+ logging.info(f"[OK] {ip} - {msg}")
+ ok += 1
+ else:
+ logging.error(f"[FAIL] {ip} - {msg}")
+ fail += 1
+
+ logging.info(f"완료: 성공 {ok}대 / 실패 {fail}대")
+
+ # IP 파일 삭제 (기존 스크립트와 동일)
+ try:
+ ip_file.unlink(missing_ok=True)
+ except Exception:
+ pass
+
+
+if __name__ == "__main__":
+ main()
diff --git a/data/scripts/unified/collect_server_info.py b/data/scripts/unified/collect_server_info.py
new file mode 100644
index 0000000..1d38655
--- /dev/null
+++ b/data/scripts/unified/collect_server_info.py
@@ -0,0 +1,192 @@
+#!/usr/bin/env python3
+"""
+통합 서버 정보 수집 스크립트
+프로파일 기반으로 BIOS/iDRAC/RAID 설정 수집
+"""
+import sys
+import yaml
+from pathlib import Path
+from concurrent.futures import ThreadPoolExecutor
+import logging
+
+sys.path.insert(0, str(Path(__file__).parent.parent))
+from core.idrac_client import IDRACClient
+from core.parsers import InfoParser
+
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] root: %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+
+
+def load_profile(profile_name: str) -> dict:
+ """프로파일 로드 및 상속 처리"""
+ profile_file = Path(__file__).parent.parent / "profiles" / "server_info_profiles.yaml"
+
+ if not profile_file.exists():
+ logging.error(f"프로파일 파일 없음: {profile_file}")
+ sys.exit(1)
+
+ with open(profile_file, 'r', encoding='utf-8') as f:
+ profiles = yaml.safe_load(f)['profiles']
+
+ profile = profiles.get(profile_name)
+ if not profile:
+ logging.error(f"프로파일 '{profile_name}' 없음. 사용 가능: {list(profiles.keys())}")
+ sys.exit(1)
+
+ # extends 처리
+ if 'extends' in profile:
+ base = profiles[profile['extends']].copy()
+ # 리스트 병합
+ for key in ['firmware', 'bios_settings', 'idrac_settings', 'raid_settings', 'custom_items']:
+ if key in profile:
+ base_items = base.get(key, [])
+ profile_items = profile[key]
+ # 중복 제거하면서 병합
+ base[key] = base_items + profile_items
+ base.update({k: v for k, v in profile.items() if k not in ['firmware', 'bios_settings', 'idrac_settings', 'raid_settings', 'custom_items']})
+ profile = base
+
+ return profile
+
+
+def collect_server_info_for_ip(ip: str, profile: dict, output_dir: Path) -> tuple:
+ """단일 IP에 대한 서버 정보 수집"""
+ try:
+ client = IDRACClient(ip)
+ parser = InfoParser()
+
+ # 서비스 태그 추출
+ sysinfo = client.get_sysinfo()
+ svc_tag = parser.extract_service_tag(sysinfo)
+ if not svc_tag:
+ return ip, False, "서비스 태그 추출 실패"
+
+ # 결과 파일 생성
+ output_file = output_dir / f"{svc_tag}.txt"
+
+ with output_file.open('w', encoding='utf-8', newline='\n') as f:
+ f.write(f"Dell EMC Server Bios,iDRAC,R/C Setting (SVC Tag: {svc_tag})\n\n")
+
+ # 펌웨어 버전 정보
+ if 'firmware' in profile:
+ f.write("-" * 42 + " Firmware Version 정보 " + "-" * 42 + "\n")
+ for idx, item in enumerate(profile['firmware'], 1):
+ value = _get_value_from_command(client, item['command'], item['pattern'])
+ f.write(f"{idx}. {item['name']} : {value}\n")
+ f.write("\n")
+
+ # BIOS 설정 정보
+ if 'bios_settings' in profile:
+ f.write("-" * 45 + " Bios 설정 정보 " + "-" * 46 + "\n")
+ for idx, item in enumerate(profile['bios_settings'], 1):
+ value = _get_value_from_command(client, item['command'], item['pattern'])
+ f.write(f"{idx:02d}. {item['name']} : {value}\n")
+ f.write("\n")
+
+ # iDRAC 설정 정보
+ if 'idrac_settings' in profile:
+ f.write("-" * 45 + " iDRAC 설정 정보 " + "-" * 45 + "\n")
+ for idx, item in enumerate(profile['idrac_settings'], 1):
+ value = _get_value_from_command(client, item['command'], item['pattern'])
+ f.write(f"{idx:02d}. {item['name']} : {value}\n")
+ f.write("\n")
+
+ # RAID 설정 정보
+ if 'raid_settings' in profile:
+ f.write("-" * 45 + " Raid 설정 정보 " + "-" * 46 + "\n")
+ for idx, item in enumerate(profile['raid_settings'], 1):
+ value = _get_value_from_command(client, item['command'], item['pattern'])
+ f.write(f"{idx:02d}. {item['name']} : {value}\n")
+ f.write("\n")
+
+ # 커스텀 항목 (있을 경우)
+ if 'custom_items' in profile and profile['custom_items']:
+ f.write("-" * 45 + " 커스텀 항목 " + "-" * 46 + "\n")
+ for idx, item in enumerate(profile['custom_items'], 1):
+ value = _get_value_from_command(client, item['command'], item['pattern'])
+ f.write(f"{idx:02d}. {item['name']} : {value}\n")
+ f.write("\n")
+
+ return ip, True, f"저장: {output_file.name}"
+
+ except Exception as e:
+ logging.error(f"[{ip}] 오류: {e}")
+ return ip, False, f"오류: {e}"
+
+
+def _get_value_from_command(client: IDRACClient, command: str, pattern: str) -> str:
+ """racadm 명령 실행 및 값 추출"""
+ # 캐싱된 데이터 사용
+ if command == "getsysinfo":
+ output = client.get_sysinfo()
+ elif command == "hwinventory":
+ output = client.get_hwinventory()
+ else:
+ _, output = client.run_command(command)
+
+ # 패턴 매칭
+ value = InfoParser.extract_value_by_pattern(output, pattern)
+ return value if value else "N/A"
+
+
+def main():
+ if len(sys.argv) < 2:
+ print("Usage: python collect_server_info.py [profile_name]")
+ print("Available profiles: default, intel_server, amd_server, minimal")
+ sys.exit(1)
+
+ ip_file = Path(sys.argv[1])
+ profile_name = sys.argv[2] if len(sys.argv) > 2 else "default"
+
+ if not ip_file.exists():
+ logging.error(f"IP 파일 없음: {ip_file}")
+ sys.exit(1)
+
+ # 프로파일 로드
+ profile = load_profile(profile_name)
+ logging.info(f"프로파일 사용: {profile_name} - {profile.get('description', '')}")
+
+ # 출력 디렉토리 (data/temp/staging)
+ script_dir = Path(__file__).resolve().parent
+ # unified 디렉토리에 있으므로, data 디렉토리는 3단계 상위 (unified -> scripts -> data)
+ data_dir = script_dir.parent.parent
+
+ # 만약 구조가 다를 경우를 대비한 안전장치 (scripts가 아닐 경우 등)
+ if data_dir.name != "data":
+ # fallback: 현재 작업 디렉토리 기준 data 찾기 시도
+ data_dir = Path("data").resolve()
+
+ output_dir = data_dir / "temp" / "staging"
+ output_dir.mkdir(parents=True, exist_ok=True)
+
+ # IP 목록 읽기
+ ips = [line.strip() for line in ip_file.read_text(encoding='utf-8').splitlines() if line.strip()]
+
+ if not ips:
+ logging.error("IP 목록이 비어 있습니다.")
+ sys.exit(1)
+
+ logging.info(f"총 {len(ips)}대 처리 시작")
+
+ # 병렬 처리 (서버 정보 수집은 racadm 호출이 많아 worker 수 줄임)
+ ok, fail = 0, 0
+ with ThreadPoolExecutor(max_workers=10) as executor:
+ futures = {executor.submit(collect_server_info_for_ip, ip, profile, output_dir): ip for ip in ips}
+
+ for future in futures:
+ ip, success, msg = future.result()
+ if success:
+ logging.info(f"[OK] {ip} - {msg}")
+ ok += 1
+ else:
+ logging.error(f"[FAIL] {ip} - {msg}")
+ fail += 1
+
+ logging.info(f"완료: 성공 {ok}대 / 실패 {fail}대")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/data/scripts/unified/system_control.py b/data/scripts/unified/system_control.py
new file mode 100644
index 0000000..2201ebc
--- /dev/null
+++ b/data/scripts/unified/system_control.py
@@ -0,0 +1,154 @@
+#!/usr/bin/env python3
+"""
+통합 시스템 제어 스크립트 (Unified System Control Script)
+기존의 개별 제어 스크립트들을 하나로 통합하였습니다.
+
+지원 기능:
+- power_on (06-PowerON.py)
+- power_off (07-PowerOFF.py)
+- log_clear (05-clrsel.py)
+- job_delete (08-job_delete_all.py)
+- tsr_collect (03-tsr_log.py)
+- tsr_save (04-tsr_save.py)
+"""
+
+import os
+import sys
+import argparse
+import subprocess
+import time
+import logging
+from concurrent.futures import ThreadPoolExecutor
+from pathlib import Path
+from dotenv import load_dotenv
+
+# -----------------------------------------------------------------------------
+# Configuration
+# -----------------------------------------------------------------------------
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+logger = logging.getLogger(__name__)
+
+# Load .env relative to script location or current directory
+load_dotenv()
+
+IDRAC_USER = os.getenv("IDRAC_USER", "root")
+IDRAC_PASS = os.getenv("IDRAC_PASS", "calvin")
+OME_USER = os.getenv("OME_USER", "")
+OME_PASS = os.getenv("OME_PASS", "")
+
+# -----------------------------------------------------------------------------
+# Command Definitions
+# -----------------------------------------------------------------------------
+# Each action maps to a function that returns the racadm command list
+def cmd_power_on(ip):
+ return ["racadm", "-r", ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "serveraction", "powerup"]
+
+def cmd_power_off(ip):
+ return ["racadm", "-r", ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "serveraction", "powerdown"]
+
+def cmd_log_clear(ip):
+ return ["racadm", "-r", ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "clrsel"]
+
+def cmd_job_delete(ip):
+ return ["racadm", "-r", ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "jobqueue", "delete", "-i", "ALL"]
+
+def cmd_tsr_collect(ip):
+ return ["racadm", "-r", ip, "-u", IDRAC_USER, "-p", IDRAC_PASS, "techsupreport", "collect"]
+
+def cmd_tsr_save(ip):
+ # Note: This command assumes a specific share path (legacy behavior)
+ # Ideally this path should also be configurable via env
+ share_path = "//10.10.3.15/share/"
+ return [
+ "racadm", "-r", ip, "-u", IDRAC_USER, "-p", IDRAC_PASS,
+ "techsupreport", "export", "-l", share_path, "-u", OME_USER, "-p", OME_PASS
+ ]
+
+ACTION_MAP = {
+ "power_on": cmd_power_on,
+ "power_off": cmd_power_off,
+ "log_clear": cmd_log_clear,
+ "job_delete": cmd_job_delete,
+ "tsr_collect": cmd_tsr_collect,
+ "tsr_save": cmd_tsr_save,
+}
+
+# -----------------------------------------------------------------------------
+# Execution Logic
+# -----------------------------------------------------------------------------
+def execute_action(ip: str, action_name: str) -> None:
+ """Run the racadm command for a single IP."""
+ try:
+ cmd_func = ACTION_MAP.get(action_name)
+ if not cmd_func:
+ logger.error(f"[{ip}] Unknown action: {action_name}")
+ return
+
+ cmd = cmd_func(ip)
+ logger.info(f"[{ip}] Executing {action_name}...")
+
+ # Run command
+ result = subprocess.run(
+ cmd,
+ capture_output=True,
+ text=True,
+ timeout=600 # Generous timeout for TSR operations
+ )
+
+ if result.returncode == 0:
+ logger.info(f"[{ip}] Success: {result.stdout.strip()}")
+ else:
+ logger.error(f"[{ip}] Failed: {result.stderr.strip()}")
+
+ except Exception as e:
+ logger.error(f"[{ip}] Exception: {e}")
+
+
+def main():
+ parser = argparse.ArgumentParser(description="Unified System Control Script")
+ parser.add_argument("action", choices=ACTION_MAP.keys(), help="Action to perform")
+ parser.add_argument("ip_file", type=Path, help="Path to the IP list file")
+
+ # Optional: Allow passing IP directly via args instead of file (future extension)
+
+ args = parser.parse_args()
+
+ ip_file = args.ip_file
+ action = args.action
+
+ if not ip_file.is_file():
+ logger.error(f"IP file not found: {ip_file}")
+ sys.exit(1)
+
+ # Read IPs
+ try:
+ with ip_file.open("r", encoding="utf-8") as f:
+ ips = [line.strip() for line in f if line.strip()]
+ except Exception as e:
+ logger.error(f"Failed to read IP file: {e}")
+ sys.exit(1)
+
+ if not ips:
+ logger.warning("No IPs found in file.")
+ sys.exit(0)
+
+ logger.info(f"Starting '{action}' for {len(ips)} servers...")
+ start_time = time.time()
+
+ # Parallel Execution
+ # Adjust max_workers as needed. 20 is a safe defaults for I/O bound network tasks.
+ with ThreadPoolExecutor(max_workers=20) as executor:
+ futures = [executor.submit(execute_action, ip, action) for ip in ips]
+ for future in futures:
+ future.result() # Wait for all to complete
+
+ elapsed = time.time() - start_time
+ logger.info(f"Completed '{action}' in {elapsed:.2f} seconds.")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/data/server_list/GPUTOExecl.py b/data/server_list/GPUTOExecl.py
index ec511bd..94bcbbf 100644
--- a/data/server_list/GPUTOExecl.py
+++ b/data/server_list/GPUTOExecl.py
@@ -126,13 +126,13 @@ def main():
# ---- Preset 기본값 설정 ----
if args.preset == "guid":
- default_input_dir = Path(os.getenv("GUID_TXT_DIR", DATA_ROOT / "guid_file"))
+ default_input_dir = Path(os.getenv("GUID_TXT_DIR", DATA_ROOT / "repository" / "guid_file"))
default_list_file = Path(os.getenv("GUID_LIST_FILE", DATA_ROOT / "server_list" / "guid_list.txt"))
- default_output = Path(os.getenv("GUID_OUTPUT_XLSX", DATA_ROOT / "idrac_info" / "XE9680_GUID.xlsx"))
+ default_output = Path(os.getenv("GUID_OUTPUT_XLSX", DATA_ROOT / "temp" / "staging" / "XE9680_GUID.xlsx"))
else: # gpu
- default_input_dir = Path(os.getenv("GPU_TXT_DIR", DATA_ROOT / "gpu_serial"))
+ default_input_dir = Path(os.getenv("GPU_TXT_DIR", DATA_ROOT / "repository" / "gpu_serial"))
default_list_file = Path(os.getenv("GPU_LIST_FILE", DATA_ROOT / "server_list" / "gpu_serial_list.txt"))
- default_output = Path(os.getenv("GPU_OUTPUT_XLSX", DATA_ROOT / "idrac_info" / "GPU_SERIALS.xlsx"))
+ default_output = Path(os.getenv("GPU_OUTPUT_XLSX", DATA_ROOT / "temp" / "staging" / "GPU_SERIALS.xlsx"))
input_dir: Path = args.input_dir or default_input_dir
list_file: Path | None = args.list_file or (default_list_file if default_list_file.is_file() else None)
diff --git a/data/server_list/GUIDtxtT0Execl.py b/data/server_list/GUIDtxtT0Execl.py
index e6c49f8..e153f00 100644
--- a/data/server_list/GUIDtxtT0Execl.py
+++ b/data/server_list/GUIDtxtT0Execl.py
@@ -34,10 +34,10 @@ DATA_ROOT = resolve_data_root()
SERVER_LIST_DIR = Path(os.getenv("GUID_SERVER_LIST_DIR", DATA_ROOT / "server_list"))
SERVER_LIST_FILE = Path(os.getenv("GUID_LIST_FILE", SERVER_LIST_DIR / "guid_list.txt"))
-GUID_TXT_DIR = Path(os.getenv("GUID_TXT_DIR", DATA_ROOT / "guid_file"))
+GUID_TXT_DIR = Path(os.getenv("GUID_TXT_DIR", DATA_ROOT / "repository" / "guid_file"))
OUTPUT_XLSX = Path(
- os.getenv("GUID_OUTPUT_XLSX", DATA_ROOT / "idrac_info" / "XE9680_GUID.xlsx")
+ os.getenv("GUID_OUTPUT_XLSX", DATA_ROOT / "temp" / "staging" / "XE9680_GUID.xlsx")
)
# Make sure output directory exists
diff --git a/data/server_list/excel.py b/data/server_list/excel.py
index e6220d1..b9f7667 100644
--- a/data/server_list/excel.py
+++ b/data/server_list/excel.py
@@ -30,8 +30,8 @@ DATA_ROOT = resolve_data_root()
SERVER_LIST_DIR = DATA_ROOT / "server_list"
SERVER_LIST_FILE = SERVER_LIST_DIR / "server_list.txt"
-MAC_TXT_DIR = DATA_ROOT / "mac"
-OUTPUT_XLSX = DATA_ROOT / "idrac_info" / "mac_info.xlsx"
+MAC_TXT_DIR = DATA_ROOT / "repository" / "mac"
+OUTPUT_XLSX = DATA_ROOT / "temp" / "staging" / "mac_info.xlsx"
# Ensure output directory exists
OUTPUT_XLSX.parent.mkdir(parents=True, exist_ok=True)
diff --git a/data/server_list/excel.py.back b/data/server_list/excel.py.back
deleted file mode 100644
index b1bc566..0000000
--- a/data/server_list/excel.py.back
+++ /dev/null
@@ -1,49 +0,0 @@
-import os
-import pandas as pd
-
-# server_list.txt 파일이 있는 폴더 경로
-server_list_folder = '/app/idrac_info/server_list/' # 실제 경로로 수정
-server_list_file = os.path.join(server_list_folder, 'server_list.txt')
-
-# 추출할 .txt 파일들이 있는 폴더 경로
-data_files_folder = '/app/idrac_info/mac/' # 실제 경로로 수정
-
-# server_list.txt 파일에서 파일명을 읽어들임
-with open(server_list_file, 'r') as f:
- file_names = f.read().splitlines()
-
-# 각 파일의 내용을 저장할 리스트 생성
-data_list = []
-index_list = []
-
-# 각 파일을 읽어들여 리스트에 저장
-sequence_number = 1
-for file_name in file_names:
- file_path = os.path.join(data_files_folder, f'{file_name}.txt')
- if os.path.exists(file_path):
- with open(file_path, 'r') as file:
- lines = file.readlines()
- for line in lines:
- cleaned_line = line.strip().upper() # 대문자로 변환
- if cleaned_line: # 빈 라인은 무시
- data_list.append(cleaned_line)
- if len(cleaned_line) == 7:
- index_list.append(sequence_number)
- sequence_number += 1
- else:
- index_list.append('') # 7자가 아닌 경우 빈 문자열로 유지
- else:
- index_list.append('') # 빈 라인은 인덱스에도 빈 값으로 유지
- else:
- data_list.append('')
- index_list.append('') # 파일이 없을 경우 빈 문자열로 유지
-
-# 데이터를 DataFrame으로 변환하여 B열부터 시작하도록 함
-df = pd.DataFrame({
- 'Index': index_list,
- 'Content': data_list
-})
-
-# 엑셀 파일로 저장
-output_file = '/app/idrac_info/idrac_info/mac_info.xlsx'
-df.to_excel(output_file, index=False, header=False)
diff --git a/data/server_list/gpu_list.txt b/data/server_list/gpu_list.txt
index a1fb653..e93acdd 100644
--- a/data/server_list/gpu_list.txt
+++ b/data/server_list/gpu_list.txt
@@ -1,3 +1,80 @@
-1V48HG4
-1T48HG4
-1V48HG4
\ No newline at end of file
+7Y3J2H4
+G8KS3H4
+F9KS3H4
+2BKS3H4
+JW3J2H4
+49KS3H4
+BX3J2H4
+5X3J2H4
+HX3J2H4
+1NRS3H4
+7PRS3H4
+4X3J2H4
+29KS3H4
+CY3J2H4
+3RPJ5H4
+GQPJ5H4
+C4DY4H4
+G3DY4H4
+79KS3H4
+8X3J2H4
+9QPJ5H4
+B4DY4H4
+45DY4H4
+HPPJ5H4
+88KS3H4
+JX3J2H4
+7Z3J2H4
+DVRS3H4
+18KS3H4
+5Y3J2H4
+H3DY4H4
+94DY4H4
+F3DY4H4
+24DY4H4
+69PG4H4
+19PG4H4
+J1DY4H4
+4QPJ5H4
+D4DY4H4
+8TPJ5H4
+43DY4H4
+53DY4H4
+2QPJ5H4
+CPPJ5H4
+44DY4H4
+FQPJ5H4
+G2DY4H4
+H7KS3H4
+D9KS3H4
+49PG4H4
+5RPJ5H4
+9RPJ5H4
+2JKS3H4
+23DY4H4
+BNRS3H4
+79PG4H4
+JKPG4H4
+GNRS3H4
+FY3J2H4
+9NRS3H4
+B8PG4H4
+39PG4H4
+99PG4H4
+48PG4H4
+D8PG4H4
+3PRS3H4
+D8KS3H4
+1X3J2H4
+9X3J2H4
+2X3J2H4
+J2DY4H4
+BQPJ5H4
+2Z3J2H4
+GX3J2H4
+C9KS3H4
+3WRG4H4
+1JKS3H4
+29PG4H4
+DQPJ5H4
+68DY4H4
\ No newline at end of file
diff --git a/data/server_list/guid_list.txt b/data/server_list/guid_list.txt
index 91b23c5..e93acdd 100644
--- a/data/server_list/guid_list.txt
+++ b/data/server_list/guid_list.txt
@@ -1,2 +1,80 @@
-1BZ7HG4
-1T48HG4
\ No newline at end of file
+7Y3J2H4
+G8KS3H4
+F9KS3H4
+2BKS3H4
+JW3J2H4
+49KS3H4
+BX3J2H4
+5X3J2H4
+HX3J2H4
+1NRS3H4
+7PRS3H4
+4X3J2H4
+29KS3H4
+CY3J2H4
+3RPJ5H4
+GQPJ5H4
+C4DY4H4
+G3DY4H4
+79KS3H4
+8X3J2H4
+9QPJ5H4
+B4DY4H4
+45DY4H4
+HPPJ5H4
+88KS3H4
+JX3J2H4
+7Z3J2H4
+DVRS3H4
+18KS3H4
+5Y3J2H4
+H3DY4H4
+94DY4H4
+F3DY4H4
+24DY4H4
+69PG4H4
+19PG4H4
+J1DY4H4
+4QPJ5H4
+D4DY4H4
+8TPJ5H4
+43DY4H4
+53DY4H4
+2QPJ5H4
+CPPJ5H4
+44DY4H4
+FQPJ5H4
+G2DY4H4
+H7KS3H4
+D9KS3H4
+49PG4H4
+5RPJ5H4
+9RPJ5H4
+2JKS3H4
+23DY4H4
+BNRS3H4
+79PG4H4
+JKPG4H4
+GNRS3H4
+FY3J2H4
+9NRS3H4
+B8PG4H4
+39PG4H4
+99PG4H4
+48PG4H4
+D8PG4H4
+3PRS3H4
+D8KS3H4
+1X3J2H4
+9X3J2H4
+2X3J2H4
+J2DY4H4
+BQPJ5H4
+2Z3J2H4
+GX3J2H4
+C9KS3H4
+3WRG4H4
+1JKS3H4
+29PG4H4
+DQPJ5H4
+68DY4H4
\ No newline at end of file
diff --git a/data/server_list/server_info_zip.py b/data/server_list/server_info_zip.py
index 5ea911a..4c8386e 100644
--- a/data/server_list/server_info_zip.py
+++ b/data/server_list/server_info_zip.py
@@ -31,7 +31,8 @@ def zip_selected_files(folder_path, file_list, output_zip):
# /app/idrac_info/backup/ 폴더 내 폴더를 나열하고 사용자 선택 받는 함수
def select_folder():
- base_path = "/data/app/idrac_info/data/backup/"
+ # Assume script is in data/server_list, backup is in data/system/backup
+ base_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), "..", "system", "backup")
if not os.path.isdir(base_path):
raise ValueError(f"기본 경로 '{base_path}'이(가) 존재하지 않습니다.")
diff --git a/data/server_list/server_list.txt b/data/server_list/server_list.txt
index a1fb653..d20ea81 100644
--- a/data/server_list/server_list.txt
+++ b/data/server_list/server_list.txt
@@ -1,3 +1,20 @@
-1V48HG4
-1T48HG4
-1V48HG4
\ No newline at end of file
+BDNXRH4
+J9MXRH4
+6DNXRH4
+59MXRH4
+G9MXRH4
+79MXRH4
+B9MXRH4
+99MXRH4
+9GMXRH4
+49MXRH4
+89MXRH4
+G8MXRH4
+H8MXRH4
+1BMXRH4
+4BMXRH4
+GV5MQH4
+6W5MQH4
+JT5MQH4
+DT5MQH4
+3V5MQH4
\ No newline at end of file
diff --git a/data/server_list/unified_excel_generator.py b/data/server_list/unified_excel_generator.py
new file mode 100644
index 0000000..a9c0cdc
--- /dev/null
+++ b/data/server_list/unified_excel_generator.py
@@ -0,0 +1,307 @@
+from __future__ import annotations
+import os
+import argparse
+import sys
+import logging
+from pathlib import Path
+from collections import OrderedDict
+import pandas as pd
+
+# -----------------------------------------------------------------------------
+# Logging Configuration
+# -----------------------------------------------------------------------------
+logging.basicConfig(
+ level=logging.INFO,
+ format='%(asctime)s [INFO] %(message)s',
+ datefmt='%Y-%m-%d %H:%M:%S'
+)
+logger = logging.getLogger(__name__)
+
+# -----------------------------------------------------------------------------
+# Path Resolution
+# -----------------------------------------------------------------------------
+def resolve_data_root() -> Path:
+ """
+ Priority:
+ 1) Env var IDRAC_DATA_DIR (absolute/relative OK)
+ 2) nearest parent of this file that contains a 'data' folder
+ 3) ./data under current working directory
+ """
+ env = os.getenv("IDRAC_DATA_DIR")
+ if env:
+ return Path(env).expanduser().resolve()
+
+ here = Path(__file__).resolve()
+ for p in [here] + list(here.parents):
+ if (p / "data").is_dir():
+ return (p / "data").resolve()
+
+ # Fallback to current working directory assumption
+ cwd_data = Path.cwd() / "data"
+ if cwd_data.is_dir():
+ return cwd_data.resolve()
+
+ # Final fallback: Assume we are in data/server_list/ -> go up two levels
+ return here.parent.parent
+
+DATA_ROOT = resolve_data_root()
+
+# Default Paths (can be overridden by args)
+DEFAULT_GUID_INPUT = DATA_ROOT / "repository" / "guid_file"
+DEFAULT_GPU_INPUT = DATA_ROOT / "repository" / "gpu_serial"
+DEFAULT_MAC_INPUT = DATA_ROOT / "repository" / "mac"
+
+DEFAULT_GUID_LIST = DATA_ROOT / "server_list" / "guid_list.txt"
+DEFAULT_GPU_LIST = DATA_ROOT / "server_list" / "gpu_serial_list.txt"
+DEFAULT_MAC_LIST = DATA_ROOT / "server_list" / "server_list.txt"
+
+DEFAULT_GUID_OUTPUT = DATA_ROOT / "temp" / "staging" / "XE9680_GUID.xlsx"
+DEFAULT_GPU_OUTPUT = DATA_ROOT / "temp" / "staging" / "GPU_SERIALS.xlsx"
+DEFAULT_MAC_OUTPUT = DATA_ROOT / "temp" / "staging" / "mac_info.xlsx"
+
+# -----------------------------------------------------------------------------
+# Utility Functions
+# -----------------------------------------------------------------------------
+def read_lines_any_encoding(path: Path) -> list[str]:
+ """Read text file trying common encodings."""
+ if not path.is_file():
+ return []
+
+ encodings = ["utf-8-sig", "utf-8", "cp949", "euc-kr", "latin-1"]
+ for enc in encodings:
+ try:
+ with path.open("r", encoding=enc, errors="strict") as f:
+ return f.read().splitlines()
+ except Exception:
+ continue
+ # last resort
+ with path.open("r", encoding="utf-8", errors="replace") as f:
+ return f.read().splitlines()
+
+def parse_txt_key_value(file_path: Path) -> dict:
+ """
+ Parse standarized Key: Value files (GPU, GUID).
+ First line is assumed to be S/T (Service Tag).
+ """
+ lines = read_lines_any_encoding(file_path)
+ if not lines:
+ return {}
+
+ data = OrderedDict()
+ data["S/T"] = lines[0].strip()
+
+ for raw in lines[1:]:
+ line = raw.strip()
+ if not line or ":" not in line:
+ continue
+ key, value = line.split(":", 1)
+ data[key.strip()] = value.strip()
+
+ return dict(data)
+
+# -----------------------------------------------------------------------------
+# Mode: MAC
+# -----------------------------------------------------------------------------
+def process_mac(input_dir: Path, list_file: Path, output_xlsx: Path):
+ """
+ Logic from excel.py
+ """
+ if not list_file.is_file():
+ raise FileNotFoundError(f"Server list file not found: {list_file}")
+
+ file_names = read_lines_any_encoding(list_file)
+
+ data_list: list[str] = []
+ index_list: list[int | str] = []
+ sequence_number = 1
+
+ for name in file_names:
+ base = (name or "").strip()
+ if not base:
+ continue
+
+ txt_path = input_dir / f"{base}.txt"
+
+ if not txt_path.is_file():
+ # Missing file handling
+ data_list.append("")
+ index_list.append("")
+ continue
+
+ lines = read_lines_any_encoding(txt_path)
+ for line in lines:
+ cleaned = (line or "").strip().upper()
+ if cleaned:
+ data_list.append(cleaned)
+ # Specific logic: if length is 7, treat as an index/sequence indicator
+ if len(cleaned) == 7:
+ index_list.append(sequence_number)
+ sequence_number += 1
+ else:
+ index_list.append("")
+ else:
+ data_list.append("")
+ index_list.append("")
+
+ # Create DataFrame
+ df = pd.DataFrame({
+ "Index": index_list,
+ "Content": data_list,
+ })
+
+ # Save without header, without index
+ output_xlsx.parent.mkdir(parents=True, exist_ok=True)
+ df.to_excel(output_xlsx, index=False, header=False)
+ logger.info(f"[MAC] Saved to {output_xlsx}")
+
+# -----------------------------------------------------------------------------
+# Mode: GPU
+# -----------------------------------------------------------------------------
+def process_gpu(input_dir: Path, list_file: Path, output_xlsx: Path):
+ """
+ Logic from GPUTOExecl.py
+ """
+ if not input_dir.is_dir():
+ raise FileNotFoundError(f"Input directory not found: {input_dir}")
+
+ # File collection
+ files: list[Path] = []
+ if list_file and list_file.is_file():
+ names = [x.strip() for x in read_lines_any_encoding(list_file) if x.strip()]
+ for name in names:
+ p = input_dir / f"{name}.txt"
+ if p.is_file():
+ files.append(p)
+ else:
+ logger.warning(f"[GPU] File not found: {p.name}")
+ else:
+ # Fallback to glob
+ files = sorted(input_dir.glob("*.txt"))
+
+ if not files:
+ logger.warning("[GPU] No files to process.")
+ return
+
+ # Parse
+ rows = []
+ for p in files:
+ rows.append(parse_txt_key_value(p))
+
+ df = pd.DataFrame(rows)
+ # Insert 'No' column
+ df.insert(0, "No", range(1, len(df) + 1))
+
+ output_xlsx.parent.mkdir(parents=True, exist_ok=True)
+ df.to_excel(output_xlsx, index=False)
+ logger.info(f"[GPU] Saved to {output_xlsx}")
+
+# -----------------------------------------------------------------------------
+# Mode: GUID
+# -----------------------------------------------------------------------------
+def process_guid(input_dir: Path, list_file: Path, output_xlsx: Path):
+ """
+ Logic from GUIDtxtT0Execl.py
+ """
+ if not input_dir.is_dir():
+ raise FileNotFoundError(f"Input directory not found: {input_dir}")
+
+ # Determine Slot Priority
+ slot_priority_str = os.getenv("GUID_SLOT_PRIORITY", "")
+ if slot_priority_str:
+ slot_priority = [s.strip() for s in slot_priority_str.split(",") if s.strip()]
+ logger.info(f"[GUID] Custom slot priority: {slot_priority}")
+ else:
+ slot_priority = ['38', '39', '37', '36', '32', '33', '34', '35', '31', '40']
+ logger.info(f"[GUID] Default slot priority: {slot_priority}")
+
+ # File collection
+ files: list[Path] = []
+ names = []
+ if list_file and list_file.is_file():
+ names = [x.strip() for x in read_lines_any_encoding(list_file) if x.strip()]
+
+ # Process
+ rows = []
+ for name in names:
+ txt_path = input_dir / f"{name}.txt"
+ if not txt_path.is_file():
+ logger.warning(f"[GUID] File not found: {txt_path.name}")
+ continue
+
+ raw_data = parse_txt_key_value(txt_path)
+
+ # Reorder and reconstruct GUID
+ ordered_data = OrderedDict()
+ ordered_data["S/T"] = raw_data.get("S/T", "")
+
+ new_guid_list = []
+ for slot_num in slot_priority:
+ slot_key = f"Slot.{slot_num}"
+ val = raw_data.get(slot_key)
+ if val:
+ ordered_data[slot_key] = val
+ if val != "Not Found" and ":" in val:
+ clean_hex = val.replace(":", "").upper()
+ new_guid_list.append(f"0x{clean_hex}")
+
+ # GUID Selection logic
+ if new_guid_list:
+ ordered_data["GUID"] = ";".join(new_guid_list)
+ elif "GUID" in raw_data:
+ ordered_data["GUID"] = raw_data["GUID"]
+
+ # Add remaining fields
+ for k, v in raw_data.items():
+ if k not in ordered_data:
+ ordered_data[k] = v
+
+ rows.append(dict(ordered_data))
+
+ if not rows:
+ logger.warning("[GUID] No data processed.")
+ # Create empty excel if needed or just return
+ return
+
+ df = pd.DataFrame(rows)
+ df.insert(0, "No", range(1, len(df) + 1))
+
+ output_xlsx.parent.mkdir(parents=True, exist_ok=True)
+ df.to_excel(output_xlsx, index=False)
+ logger.info(f"[GUID] Saved to {output_xlsx}")
+
+
+# -----------------------------------------------------------------------------
+# Main Entry Point
+# -----------------------------------------------------------------------------
+def main():
+ parser = argparse.ArgumentParser(description="Unified Excel Generator")
+ parser.add_argument("--mode", required=True, choices=["mac", "gpu", "guid"], help="Generation mode")
+ parser.add_argument("--input-dir", type=Path, help="Input directory (optional override)")
+ parser.add_argument("--list-file", type=Path, help="List file (optional override)")
+ parser.add_argument("--output-xlsx", type=Path, help="Output XLSX path (optional override)")
+
+ args = parser.parse_args()
+
+ mode = args.mode
+
+ # Determine effective paths based on mode and overrides
+ if mode == "mac":
+ input_dir = args.input_dir or DEFAULT_MAC_INPUT
+ list_file = args.list_file or DEFAULT_MAC_LIST
+ output_xlsx = args.output_xlsx or DEFAULT_MAC_OUTPUT
+ process_mac(input_dir, list_file, output_xlsx)
+
+ elif mode == "gpu":
+ input_dir = args.input_dir or DEFAULT_GPU_INPUT
+ list_file = args.list_file or DEFAULT_GPU_LIST
+ output_xlsx = args.output_xlsx or DEFAULT_GPU_OUTPUT
+ process_gpu(input_dir, list_file, output_xlsx)
+
+ elif mode == "guid":
+ input_dir = args.input_dir or DEFAULT_GUID_INPUT
+ list_file = args.list_file or DEFAULT_GUID_LIST
+ output_xlsx = args.output_xlsx or DEFAULT_GUID_OUTPUT
+ process_guid(input_dir, list_file, output_xlsx)
+
+if __name__ == "__main__":
+ main()
diff --git a/data/temp/staging/test.txt b/data/temp/staging/test.txt
new file mode 100644
index 0000000..e69de29
diff --git a/data/temp_ip/ip_0.txt b/data/temp_ip/ip_0.txt
deleted file mode 100644
index 8fe27c5..0000000
--- a/data/temp_ip/ip_0.txt
+++ /dev/null
@@ -1 +0,0 @@
-10.10.0.2
diff --git a/idrac-info.service b/idrac-info.service
deleted file mode 100644
index 8c1acd9..0000000
--- a/idrac-info.service
+++ /dev/null
@@ -1,29 +0,0 @@
-[Unit]
-Description=iDRAC Info Web Service
-After=network.target
-
-[Service]
-# 실행할 사용자 (보안을 위해 root 대신 전용 계정 권장, 예: idrac)
-User=root
-Group=root
-
-# 프로젝트 루트 디렉토리 (서버 환경에 맞게 수정 필요)
-WorkingDirectory=/data/app/idrac_info_new
-
-# 가상환경의 python 실행 및 app.py 호출
-# ExecStart=
-ExecStart=/bin/bash -c '/data/app/idrac_info_new/venv/bin/python /data/app/idrac_info_new/app.py'
-
-# 환경 변수 설정 (필요 시 수정)
-Environment="FLASK_HOST=0.0.0.0"
-Environment="FLASK_PORT=5000"
-Environment="FLASK_DEBUG=false"
-# Werkzeug 리로더 끄기 (프로덕션 모드) - Systemd에서는 이 설정이 오히려 오류(KeyError)를 유발하므로 제거
-# Environment="WERKZEUG_RUN_MAIN=true"
-
-# 프로세스 종료 시 자동 재시작
-Restart=always
-RestartSec=5
-
-[Install]
-WantedBy=multi-user.target
diff --git a/implementation_plan.md b/implementation_plan.md
deleted file mode 100644
index f72f26c..0000000
--- a/implementation_plan.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# 구현 계획 (Implementation Plan)
-
-## 1. GUID 슬롯 우선순위 기능 (완료)
-- [x] **UI 구현**: `index.html`에 모달 및 프리셋 로직 추가
-- [x] **서버 로직**: `utilities.py`에서 슬롯 정보 환경변수로 전달
-- [x] **스크립트 수정**: `GUIDtxtT0Execl.py`에서 환경변수 기반 정렬 구현
-
-## 2. 코드 품질 및 유지보수 (진행 중)
-- [x] **로깅 개선**: `logger.py`에서 로그 로테이션 로직 개선 및 불필요한 로그(werkzeug 등) 레벨 조정
-- [ ] **코드 정리**: `config.py` 및 기타 설정 파일 검토
-
-## 3. 향후 개선 사항
-- **GPU/MAC 변환 개선**: GUID와 유사하게 사용자 설정 옵션 추가 검토
-- **테스트 커버리지**: 주요 로직에 대한 단위 테스트 추가
-- **문서화**: 새로운 기능(슬롯 우선순위)에 대한 사용 가이드 작성 (`README.md` 업데이트)
diff --git a/migrate_passwords.py b/migrate_passwords.py
deleted file mode 100644
index 498d7f0..0000000
--- a/migrate_passwords.py
+++ /dev/null
@@ -1,26 +0,0 @@
-from __future__ import annotations
-import sys
-from pathlib import Path
-from werkzeug.security import generate_password_hash
-from flask import Flask
-
-# 앱/DB/모델 임포트
-from config import Config
-from backend.models.user import db, User
-
-BASE_DIR = Path(__file__).resolve().parent
-
-
-def is_hashed(password: str) -> bool:
- return password.startswith("pbkdf2:sha256")
-
-
-def main() -> int:
- # 별도 Flask 앱 컨텍스트 구성
- app = Flask(__name__)
- app.config.from_object(Config)
- db.init_app(app)
-
-
-if __name__ == "__main__":
- raise SystemExit(main())
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index 78ce057..2e29f3a 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,5 +1,6 @@
alembic==1.16.5
argon2-cffi==25.1.0
+chardet==5.2.0
email-validator==2.3.0
Flask==3.1.2
Flask-Login==0.6.3
@@ -16,6 +17,7 @@ pytest==8.0.0
pytest-mock==3.12.0
python-dotenv==1.0.1
python-telegram-bot==22.5
+PyYAML==6.0.3
requests==2.32.3
SQLAlchemy==2.0.43
watchdog==6.0.0
diff --git a/task.md b/task.md
deleted file mode 100644
index b92f0c3..0000000
--- a/task.md
+++ /dev/null
@@ -1,31 +0,0 @@
----
-description: GUID 슬롯 우선순위 설정 기능 구현
----
-# 프로젝트 작업 상태
-
-## 현재 작업: GUID 슬롯 우선순위 설정 기능 구현
-GUID 엑셀 변환 시 사용자가 원하는 순서대로 슬롯 정보를 정렬할 수 있도록 기능을 추가했습니다.
-사용자 요청에 따라 엑셀의 'GUID' 컬럼도 슬롯 우선순위에 맞춰 재구성되도록 수정했습니다.
-
-### 최근 변경 사항
-1. **Frontend (`index.html`)**
- - 슬롯 우선순위 설정 모달(`slotPriorityModal`) 추가
- - 로컬 스토리지(LocalStorage)를 활용한 설정 저장 및 프리셋 기능 구현
- - `update_guid_list` 폼 전송 시 `slot_priority` 값 포함
-
-2. **Backend (`utilities.py`)**
- - `/update_guid_list` 라우트 수정
- - 클라이언트에서 전송된 `slot_priority` 값을 받아 환경변수 `GUID_SLOT_PRIORITY`로 설정
-
-3. **Script (`GUIDtxtT0Execl.py`)**
- - `GUID_SLOT_PRIORITY` 환경변수를 읽어 `SLOT_PRIORITY` 리스트로 파싱
- - 엑셀 컬럼 정렬뿐만 아니라 **'GUID' 컬럼의 값(0x...;0x...)도 해당 순서에 맞춰 재생성**하도록 로직 수정
-
-## 할 일 목록 (Todo)
-- [x] `index.html`: 슬롯 설정 모달 구현 및 JS 연동
-- [x] `utilities.py`: 백엔드 파라미터 처리 로직 수정
-- [x] `GUIDtxtT0Execl.py`: 스크립트 정렬 로직 수정 및 GUID 컬럼 재구성 로직 추가
-- [ ] 기능 동작 확인 및 테스트 (사용자)
-
-## 대기 중인 작업
-- 사용자 피드백 대기
diff --git a/update_db.py b/update_db.py
deleted file mode 100644
index 49ce98b..0000000
--- a/update_db.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import sqlite3
-import os
-
-db_path = r"D:\Code\iDRAC_Info\idrac_info\backend\instance\site.db"
-
-if not os.path.exists(db_path):
- print(f"Database not found at {db_path}")
-else:
- try:
- conn = sqlite3.connect(db_path)
- cursor = conn.cursor()
-
- # Check if column exists
- cursor.execute("PRAGMA table_info(telegram_bots)")
- columns = [info[1] for info in cursor.fetchall()]
-
- if 'notification_types' not in columns:
- print("Adding notification_types column...")
- cursor.execute("ALTER TABLE telegram_bots ADD COLUMN notification_types VARCHAR(255) DEFAULT 'auth,activity,system'")
- conn.commit()
- print("Column added successfully.")
- else:
- print("Column already exists.")
-
- conn.close()
- except Exception as e:
- print(f"Error: {e}")
diff --git a/update_user_approval.py b/update_user_approval.py
deleted file mode 100644
index 8fef049..0000000
--- a/update_user_approval.py
+++ /dev/null
@@ -1,67 +0,0 @@
-"""
-DB 업데이트 스크립트: User 테이블에 승인 관련 필드 추가
-- is_approved: 가입 승인 여부
-- approval_token: 승인 토큰 (텔레그램 버튼 콜백용)
-"""
-import sys
-import os
-
-# 프로젝트 루트를 sys.path에 추가
-sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
-
-from app import app
-from backend.models.user import db
-
-def update_user_table():
- """User 테이블에 승인 관련 컬럼 추가"""
- with app.app_context():
- try:
- # 컬럼 존재 여부 확인
- inspector = db.inspect(db.engine)
- columns = [col['name'] for col in inspector.get_columns('user')]
-
- if 'is_approved' not in columns:
- print("✅ is_approved 컬럼 추가 중...")
- db.session.execute(db.text(
- "ALTER TABLE user ADD COLUMN is_approved BOOLEAN DEFAULT 0 NOT NULL"
- ))
- print("✅ is_approved 컬럼 추가 완료")
- else:
- print("ℹ️ is_approved 컬럼이 이미 존재합니다.")
-
- if 'approval_token' not in columns:
- print("✅ approval_token 컬럼 추가 중...")
- # SQLite는 UNIQUE 제약조건을 ALTER TABLE에서 직접 추가할 수 없음
- # 먼저 컬럼만 추가하고, 나중에 인덱스로 UNIQUE 처리
- db.session.execute(db.text(
- "ALTER TABLE user ADD COLUMN approval_token VARCHAR(100)"
- ))
- print("✅ approval_token 컬럼 추가 완료")
-
- # UNIQUE 인덱스 생성
- try:
- db.session.execute(db.text(
- "CREATE UNIQUE INDEX idx_user_approval_token ON user(approval_token)"
- ))
- print("✅ approval_token UNIQUE 인덱스 생성 완료")
- except Exception as e:
- print(f"ℹ️ UNIQUE 인덱스 생성 스킵 (이미 존재하거나 NULL 값 때문): {e}")
- else:
- print("ℹ️ approval_token 컬럼이 이미 존재합니다.")
-
- # 기존 사용자들은 자동 승인 처리
- print("✅ 기존 사용자 자동 승인 처리 중...")
- db.session.execute(db.text(
- "UPDATE user SET is_approved = 1 WHERE is_approved = 0"
- ))
-
- db.session.commit()
- print("✅ 데이터베이스 업데이트 완료!")
-
- except Exception as e:
- print(f"❌ 오류 발생: {e}")
- db.session.rollback()
- raise
-
-if __name__ == "__main__":
- update_user_table()