summarylogtreecommitdiffstats
path: root/0001-Use-modern-threading-api.patch
blob: 659e558300991d638752b33162683a20e3dd242e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
From 9dff4ed97d8a7feb88714e59c4a477e7b98a11bb Mon Sep 17 00:00:00 2001
From: Ritesh Raj Sarraf <rrs@debian.org>
Date: Fri, 22 Apr 2022 12:33:57 +0530
Subject: [PATCH] Use modern threading api

Instead of the old camelCase api naming convention
---
 apt_offline_core/AptOfflineCoreLib.py | 2 +-
 apt_offline_core/AptOfflineLib.py     | 5 ++---
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/apt_offline_core/AptOfflineCoreLib.py b/apt_offline_core/AptOfflineCoreLib.py
index 36663f1..99da343 100644
--- a/apt_offline_core/AptOfflineCoreLib.py
+++ b/apt_offline_core/AptOfflineCoreLib.py
@@ -1301,7 +1301,7 @@ def fetcher( args ):
 
                 #INFO: Everything
                 (url, pkgFile, download_size, checksum) = stripper(item)
-                thread_name = threading.currentThread().getName()
+                thread_name = threading.current_thread().name
                 log.verbose("Thread is %s\n" % (thread_name) )
 
                 if url.endswith(".deb"):
diff --git a/apt_offline_core/AptOfflineLib.py b/apt_offline_core/AptOfflineLib.py
index 3595ee8..cb63a18 100644
--- a/apt_offline_core/AptOfflineLib.py
+++ b/apt_offline_core/AptOfflineLib.py
@@ -688,8 +688,7 @@ class MyThread( threading.Thread ):
 
         def run( self, item=None):
                 while True:
-                        if threading.currentThread().guiTerminateSignal:
-                                #print threading.currentThread().getName(), "has been stopped :D"
+                        if threading.current_thread().guiTerminateSignal:
                                 break
                         if self.requestQueue is not None:
                                 item = self.requestQueue.get()
@@ -697,7 +696,7 @@ class MyThread( threading.Thread ):
                         if item is None:
                                 break
 
-                        thread_name = threading.currentThread().getName()
+                        thread_name = threading.current_thread().name
 
                         if self.responseQueue is not None:
                                 self.responseQueue.put( self.WorkerFunction( item, thread_name ) )
-- 
2.36.0