Skip to content

Commit e4da4ec

Browse files
committed
allocation profiler fix
1 parent f9dfe76 commit e4da4ec

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

examples/flask_app.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
# StackImpact agent initialization
2929
agent = stackimpact.start(
3030
agent_key = os.environ['AGENT_KEY'],
31-
dashboard_address = os.environ['DASHBOARD_ADDRESS'],
3231
app_name = 'ExamplePythonFlaskApp',
3332
app_version = '1.0.0',
3433
debug = True)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name = 'stackimpact',
5-
version = '1.1.0',
5+
version = '1.1.1',
66
description = 'StackImpact Python Agent',
77
author = 'StackImpact',
88
author_email = 'devops@stackimpact.com',

stackimpact/agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
class Agent:
2828

29-
AGENT_VERSION = "1.1.0"
29+
AGENT_VERSION = "1.1.1"
3030
SAAS_DASHBOARD_ADDRESS = "https://agent-api.stackimpact.com"
3131

3232
def __init__(self, **kwargs):

stackimpact/reporters/allocation_reporter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def report(self):
114114
return
115115

116116
self.profile.normalize(self.profile_duration)
117-
self.propagate()
117+
self.profile.propagate()
118118
self.profile.floor()
119119
self.profile.filter(2, 1000, float("inf"))
120120

0 commit comments

Comments
 (0)