Skip to content

Commit

Permalink
Adding forking limits
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Stringer committed Apr 18, 2017
1 parent 0aaff9c commit ec03dd6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from setuptools import setup, find_packages
import sys

VERSION = "0.3.0"
VERSION = "0.3.1"
PACKAGE_NAME = "hpilo-exporter"
SOURCE_DIR_NAME = "src"

Expand Down
3 changes: 2 additions & 1 deletion src/hpilo_exporter/exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@


class ForkingHTTPServer(ForkingMixIn, HTTPServer):
pass
max_children = 30
timeout = 30


class RequestHandler(BaseHTTPRequestHandler):
Expand Down

0 comments on commit ec03dd6

Please sign in to comment.