Skip to content

Commit 30fbcbb

Browse files
fix: delete unnecessary variable in load_mibs function (#418) (#419)
* fix: delete unnecessary variable in load_mibs function (#418) * chore(release): 1.5.9-beta.1 ## [1.5.9-beta.1](v1.5.8...v1.5.9-beta.1) (2022-02-28) ### Bug Fixes * delete unnecessary variable in load_mibs function ([#418](#418)) ([c9e7131](c9e7131)) Co-authored-by: semantic-release-bot <[email protected]>
1 parent 75e5832 commit 30fbcbb

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

charts/splunk-connect-for-snmp/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ type: application
1414
# to the chart and its templates, including the app version.
1515
# Versions are expected to follow Semantic Versioning (https://semver.org/)
1616

17-
version: 1.5.8
17+
version: 1.5.9-beta.1
1818
# This is the version number of the application being deployed. This version number should be
1919
# incremented each time you make changes to the application. Versions are not expected to
2020
# follow Semantic Versioning. They should reflect the version the application is using.
2121
# It is recommended to use it with quotes.
22-
appVersion: "1.5.8"
22+
appVersion: "1.5.9-beta.1"
2323
#
2424
dependencies:
2525
- name: mongodb

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "splunk-connect-for-snmp"
3-
version = "1.5.8"
3+
version = "1.5.9-beta.1"
44
description = ""
55
authors = ["rfaircloth-splunk <[email protected]>"]
66
license = "Apache-2.0"

splunk_connect_for_snmp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
#
1616

1717

18-
__version__ = "1.5.8"
18+
__version__ = "1.5.9-beta.1"

splunk_connect_for_snmp/snmp/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def trap(self, work):
135135
with suppress(Exception):
136136
found, mib = self.is_mib_known(w[1], w[1], work["host"])
137137
if found and mib not in oid_values:
138-
self.load_mibs(self.builder, [mib])
138+
self.load_mibs([mib])
139139
oid_values.add(mib)
140140

141141
try:

0 commit comments

Comments
 (0)