Skip to content

Commit

Permalink
add fix info
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejwl committed Jun 4, 2021
1 parent ae5a5e7 commit 81b9b4c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions fix.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Modifying daemon library source code

Run: `vim /usr/local/lib/python3.8/dist-packages/daemon/runner.py`
Modify the following lines (#118):

```python
self.daemon_context = DaemonContext()
self.daemon_context.stdin = open(app.stdin_path, 'wb+',buffering=0)
self.daemon_context.stdout = open(app.stdout_path, 'wb+',buffering=0)
self.daemon_context.stderr = open(
app.stderr_path, 'wb+', buffering=0)
```

0 comments on commit 81b9b4c

Please sign in to comment.