Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaircloth-splunk committed Feb 5, 2020
1 parent a07af01 commit f123b67
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ def splunk(request):
request.fixturenames.append('splunk_external')
splunk = request.getfixturevalue("splunk_external")
elif request.config.getoption('splunk_type') == 'docker':
os.environ['splunk_version'] = request.config.getoption('splunk_version')
request.fixturenames.append('splunk_docker')
splunk = request.getfixturevalue("splunk_docker")
else:
Expand Down Expand Up @@ -153,7 +152,7 @@ def splunk_docker(request, docker_services, docker_ip):
}

docker_services.wait_until_responsive(
timeout=300.0, pause=1.0, check=lambda: is_responsive_splunk(splunk)
timeout=180.0, pause=1.0, check=lambda: is_responsive_splunk(splunk)
)

return splunk
Expand Down
3 changes: 2 additions & 1 deletion tests/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ services:
build:
context: ../package
image: docker.pkg.github.com/splunk/splunk-connect-for-syslog/stg-splunk-connect-for-syslog:sc4s-${SYSLOG}-${CIRCLE_SHA1}
hostname: sc4s
#When this is enabled test_common will fail
# command: -det
ports:
Expand Down Expand Up @@ -47,7 +48,7 @@ services:
build:
context: ../splunk
image: docker.pkg.github.com/splunk/splunk-connect-for-syslog/stg-splunk-connect-for-syslog:splunk-${SPLUNK}-${CIRCLE_SHA1}

hostname: splunk
ports:
- "8000"
- "8088"
Expand Down

0 comments on commit f123b67

Please sign in to comment.