Matthew Johnston

Results 268 comments of Matthew Johnston

@rhcarvalho I'll take a look at this soon, we should handle this. We are also in an experimental phase changing how the connection is pooled. - https://github.com/elixir-sqlite/exqlite/pull/256 - https://github.com/elixir-sqlite/exqlite/pull/255 >...

This would be nice to be installable via the package controller

This is unfortunately an intentional issue. `DBConnection` does connection pooling. When the connection is closed, the database is also closed by virtue of `sqlite_close`. There has been discussions of dropping...

> and individual lines, so that stashing works with the same amount features as staging. That is true, I have been having to add a temporary commit with the staged...

Today I learned that `git stash -p` exists.

What are your settings for your database? Specifically `:pool`, `:queue_target` and `:pool_size` for your test environment.

How many of those tests are using `async: true`?

In our integration tests in the `test_helper.exs` we do this https://github.com/elixir-sqlite/ecto_sqlite3/blob/37b68d9874695e5c17b80c5d7d57f8a803fd9524/integration_test/test_helper.exs#L50-L71 You can ignore `PoolRepo` its there to test that pooled connections work. Generally when I am working with sqlite...

No it is not. We can definitely add it in as a "Suggested Workflow" pattern.

Does this happen all the time or is it infrequent? Does it coincide with test that fails (not the cause for the test failure)? I'm hypothesizing that this may be...