File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
setup (
4
4
name = 'stackimpact' ,
5
- version = '1.1.4 ' ,
5
+ version = '1.1.5 ' ,
6
6
description = 'StackImpact Python Agent' ,
7
7
author = 'StackImpact' ,
8
8
author_email = 'devops@stackimpact.com' ,
Original file line number Diff line number Diff line change 26
26
27
27
class Agent :
28
28
29
- AGENT_VERSION = "1.1.4 "
29
+ AGENT_VERSION = "1.1.5 "
30
30
SAAS_DASHBOARD_ADDRESS = "https://agent-api.stackimpact.com"
31
31
32
32
def __init__ (self , ** kwargs ):
@@ -113,7 +113,7 @@ def _signal_handler(signum, frame):
113
113
if not runtime_info .OS_WIN :
114
114
register_signal (signal .SIGUSR2 , _signal_handler )
115
115
116
- if self .get_option ('auto_destroy' ) == False :
116
+ if self .get_option ('auto_destroy' ) is None or self . get_option ( 'auto_destroy' ) is True :
117
117
# destroy agent on exit
118
118
def _exit_handler (* arg ):
119
119
if not self .agent_started or self .agent_destroyed :
You can’t perform that action at this time.
0 commit comments