Skip to content

Commit c2e4e41

Browse files
Adding timer service threads human readable names.
Adding timer service threads human readable names.
1 parent 97891e8 commit c2e4e41

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/core/timers/ProxyTimerServiceImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public class ProxyTimerServiceImpl extends Timer implements ProxyTimerService {
4444
private static volatile int numCancelled = 0;
4545

4646
public ProxyTimerServiceImpl(){
47-
super();
47+
super("sip_standard_proxy_timer_service");
4848
schedulePurgeTaskIfNeeded();
4949
}
5050

sip-servlets-impl/src/main/java/org/mobicents/servlet/sip/core/timers/StandardSipApplicationSessionTimerService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class StandardSipApplicationSessionTimerService extends
5151
* @param corePoolSize
5252
*/
5353
public StandardSipApplicationSessionTimerService() {
54-
super();
54+
super("sip_standard_sas_timer_service");
5555
schedulePurgeTaskIfNeeded();
5656
}
5757

0 commit comments

Comments
 (0)