Spencer

Results 20 issues of Spencer

I ran all of the regression tests in test/test-mysql.

`dbdiff.describeDatabase(conn1) .then((schema) => { console.log(schema) })` prints the schema, but hangs in the terminal

**Is your feature request related to a problem? Please describe.** I would like to send selective metrics instead of every query executed. **Describe the solution you'd like** Optionally enable selective...

enhancement

Normalize Ecto URI and Config the same way that ecto does it [here](https://github.com/elixir-ecto/ecto/blob/v3.8.4/lib/ecto/repo/supervisor.ex#L28) Normalizing the URI allows for: * `db.url` to be more complete * `net.peer.name` to be added conditionally...

elixir
instrumentation
opentelemetry_ecto

Record the exception for ecto query errors.

elixir
instrumentation
opentelemetry_ecto

It looks like `connection.password` is correctly hidden but `connection.url` is not and contains secrets ``` connection.password = [hidden] ``` ``` connection.url = jdbc:postgresql://:5432/?username=&password=&currentSchema=mySchema ```

When attempting to write to ElasticSearch and an "Indexing record failed" error occurs, the connector dies without any retries. We do not even see the [retry log](https://github.com/confluentinc/kafka-connect-elasticsearch/blob/v13.0.0/src/main/java/io/confluent/connect/elasticsearch/RetryUtil.java#L171) execute. Kafka Connect...

* [Fix for issue 67](https://github.com/shinyscorpion/task_bunny/issues/67) ~~Added a [manual_queue_supervisor.ex](https://github.com/spencerdcarlson/task_bunny/blob/master/lib/task_bunny/manual_queue_supervisor.ex) which is a clone of [supervisor.ex](https://github.com/shinyscorpion/task_bunny/blob/master/lib/task_bunny/supervisor.ex) except it takes an options keyword list as the first parameter.~~ Modified TaskBunny.Supervisor.start_link to take options...

Submitting this MR as an example. What are your thoughts on: * leveraging groups to run tests in parallel * Making tests repeatable (where it makes sense) * Making tests...