We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e41ae7a + 01b344a commit 5b35248Copy full SHA for 5b35248
opal_client/opa/runner.py
@@ -109,7 +109,8 @@ async def _run_opa_until_terminated(self) -> int:
109
self._process = await asyncio.create_subprocess_shell(
110
self.command,
111
stdout=asyncio.subprocess.PIPE,
112
- stderr=asyncio.subprocess.PIPE
+ stderr=asyncio.subprocess.PIPE,
113
+ start_new_session=True,
114
)
115
116
# waits until the process is up, then runs a callback
setup/__version__.py
@@ -7,7 +7,7 @@
7
Project homepage: https://github.com/authorizon/opal
8
"""
9
10
-VERSION = (0, 1, 7)
+VERSION = (0, 1, 8)
11
VERSION_STRING = '.'.join(map(str,VERSION))
12
13
__version__ = VERSION_STRING
0 commit comments