Skip to content

Commit 50fbd9c

Browse files
author
Li Wu
authored
Release 7.0.0 (#325)
* Fix structlog dependency for app (#280) * zipfile fix (#284) * Fix bug 286 random token replacement (#287) * Fix bug 286 random token replacement * Change perdayvolume generator logic to get random token value replacement * Versioning scheme (#278) * [global] perDayVolume (#288) * exclude global from perDayVolume assignment * Address comment * Fix security vulnerability issue (#289) * Fix custom plugin stale docs (#290) * Server fix (#293) * Flag added * server fix for count and env clean * Fix bug 285 (#297) * Add syslogAddHeader config directive (#296) * Add syslog header to event in syslog mode * timezone setting bugfix #249 * Using multiprocess pool to address the OOM issue (#301) * Using multiprocess pool to address the OOM issue * Fix test case fail * Remove workerQueue unfinished tasks (#302) * Bumped version to 6.5.2 * controller fix (#304) * controller fix * variable assignment fix (#306) * add healthcheck endpoint and ping it every half an hour (#308) * Fix security vulnerability issue reported by GitHub (#309) * make controller also hit redis on healthcheck (#311) * Fixed typo (#313) * update redis version to use new functions (#318) * Update tutorial related docs (#315) * Revert oom fix change (#320) * make circle ci fail when test case fails (#317) * Add disable logging option to fix oom (#323) * Add disable logging option to fix oom * Fix modular input bug * Fixing api server (#322) * fixed multiple attributes * debug * Py3 upgrade (#291) * init commit for python 3 migration * migrate to py3 for test * Fix import issue * Fix test cases * Fix jinja test case * Fix multiprocess issue * Fix a few warnings * Fix test case fail * Fix test case * Fix cluster test cases * Fix set_conf error * Fix shebang * Remove logutils lib from source * Fix splunkstream import error * Remove logutils from requirements.txt * Fix build spl error * Change code block indent * Fix doc anchor issue * Fix app running on Splunk 8.0 issue * Fix xrange issue introduced by develop branch * Fix merge bug * Fix bug * remove logutils * Fix makefile bug * Fix configparser bug * Change filter function * Bump version to 7.0.0 * Fix dateutil package bug
1 parent 0096651 commit 50fbd9c

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed
Binary file not shown.

splunk_eventgen/lib/timeparser.py

-5
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,13 @@
11
from splunk_eventgen.lib.logging_config import logger
22
import datetime
33
import math
4-
import os
54
import re
65
# Hack to allow distributing python modules since Splunk doesn't have setuptools
76
# We create the egg outside of Splunk (with a copy of python2.7 and using Python only modules
87
# To avoid being platform specific) and then append the egg path and import the module
98
# If we get a lot of these we'll move the eggs from bin to lib
109
#
11-
# python-dateutil acquired from http://labix.org/python-dateutil. BSD Licensed
12-
import sys
1310

14-
path_prepend = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), 'lib')
15-
sys.path.append(path_prepend + '/python_dateutil-1.4.1-py2.7.egg')
1611
import dateutil.parser as dateutil_parser # noqa isort:skip
1712

1813

0 commit comments

Comments
 (0)