Devin Fee

Results 22 issues of Devin Fee

FYI: [this test](https://github.com/graphql-python/sanic-graphql/blob/36a940327071bb0c019d8881d170fd7c7a85713a/tests/test_graphqlview.py#L481) will never run (or it will always run, but it shouldn't). I'm in the process of porting this to `aiohttp` and found this... I believe the test...

I am creating my store this way: ```ts export const createStore = (initial: StoreSnapshotIn = {}) => { const store = Store.create(initial); if (process.env.NODE_ENV === "development") { const makeInspectable =...

question

I'm reviewing this code as I want to understand the architecture of the template and customize it to my needs. For example, I might want to use Azure Functions instead...

When a websocket connection is closed, I get the following error: ``` ERROR 2017-03-16 19:26:54,394 [sanic:72][MainThread] Traceback (most recent call last): File "/Users/dfee/code/spark/env/lib/python3.6/site-packages/sanic/app.py", line 470, in handle_request _response = await...

title says it all. self-provided descriptions aren't very compatible, making usage hard to grok (see: right hand side): ``` $ ➜ End of line l ➜ Right % ➜ Matching...

**Describe the bug** builds fail with error: ``` = note: ld: library not found for -liconv collect2: error: ld returned 1 exit status error: could not compile `thiserror` due to...

P2
type: bug

I'm able to bidirectionally sync by running `unison . socket://:5000/ -ignore 'Path .git' -auto -batch` However, that doesn't stay alive (obviously). What does stay alive is `fswatch -o . |...

I've done some work to ensure blocking work won't happen in the main thread. You might consider adding this (or something similar) to aiopyramid or the docs: ``` import os...

`Websockets` doesn't seem to keep the connection alive as claimed in the docs (https://github.com/aaugustin/websockets/issues/110). I'd suggest changing the **call** method of your WebsocketConnectionView to look like: ``` async def __call__(self,...