Skip to content
This repository was archived by the owner on Jun 2, 2021. It is now read-only.

Commit 1a31693

Browse files
committed
Add wake_interval to IGNORE_KEYS
1 parent 64ee518 commit 1a31693

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: newrelic_plugin_agent/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
__init__.py
33
44
"""
5-
__version__ = '1.2.1'
5+
__version__ = '1.2.2'
66

Diff for: newrelic_plugin_agent/agent.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ class NewRelicPluginAgent(helper.Controller):
2525
every minute and reports the state to NewRelic.
2626
2727
"""
28-
IGNORE_KEYS = ['license_key', 'poll_interval', 'proxy', 'endpoint']
28+
IGNORE_KEYS = ['license_key', 'proxy', 'endpoint',
29+
'poll_interval', 'wake_interval']
2930
MAX_METRICS_PER_REQUEST = 10000
3031
PLATFORM_URL = 'https://platform-api.newrelic.com/platform/v1/metrics'
3132
WAKE_INTERVAL = 60

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676

7777

7878
setup(name='newrelic_plugin_agent',
79-
version='1.2.1',
79+
version='1.2.2',
8080
description='Python based agent for collecting metrics for NewRelic',
8181
url='https://github.com/MeetMe/newrelic-plugin-agent',
8282
packages=['newrelic_plugin_agent', 'newrelic_plugin_agent.plugins'],

0 commit comments

Comments
 (0)