Skip to content

Commit

Permalink
remove set_start_method
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelcolvin committed Feb 10, 2018
1 parent 777eb46 commit b4e6a74
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
History
-------

0.8.0 (2018-02-XX)
-----------------
* write for aiohttp >= 3 stop using multiprocessing, #173

0.7.1 (2018-02-01)
------------------
* set ``Access-Control-Allow-Origin`` for static files, #169
Expand Down
3 changes: 0 additions & 3 deletions aiohttp_devtools/runserver/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import asyncio
import contextlib
import os
from multiprocessing import set_start_method

from ..logs import rs_dft_logger as logger
from .config import Config
Expand Down Expand Up @@ -39,8 +38,6 @@ def runserver(**config_kwargs):
:param config_kwargs: see config.Config for more details
:return: tuple (auxiliary app, auxiliary app port, event loop)
"""
# force a full reload in sub processes so they load an updated version of code, this must be called only once
set_start_method('spawn')

config = Config(**config_kwargs)
config.import_app_factory()
Expand Down
2 changes: 1 addition & 1 deletion aiohttp_devtools/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ['VERSION']

VERSION = StrictVersion('0.7.1')
VERSION = StrictVersion('0.8.0')

0 comments on commit b4e6a74

Please sign in to comment.