Spencer

Results 30 comments of Spencer

Just looking at ecto/db_connection suite as a reference — their approach seems to be to time the relevant parts and emit the timed event with execute. [sql.ex#L1101-L1103](https://github.com/elixir-ecto/ecto_sql/blob/29c3af38f60d1c3ace4bdfde09aefb8dca6c13fc/lib/ecto/adapters/sql.ex#L1101-L1103)

@slashmili let me know what you think of https://github.com/kafka4beam/brod/pull/512. Just starting to take a very light stab at adding telemetry.

In the included example, I would prefer to combine the create and delete into one test that first creates and then deletes the same topic instead of passing state between...

@cruffenach I'm trying to install with a pod file `pod 'CRToast', git: 'https://github.com/cruffenach/CRToast.git', branch: '2.0'` I am not able to successfully `import CRToast` in any .swift files. Any Suggestions?

@futpib thanks for opening an issue. I'll look into this. As a work around, you might be able to set `export HUSKY_SKIP_INSTALL=true` to disable installing the hook scripts on compile....

Looks like the build failed, can you run `mix format`

I need to double check this. I'm thinking maybe we use ```elixir 'git rev-parse --show-toplevel' |> :os.cmd() |> to_string() ``` to find the closest .git root

@tsloughter I believe I resolved all conflicts.

I was facing a similar issue until I set the following [environment variables](https://hexdocs.pm/mix/Mix.Tasks.Release.html#module-environment-variables) for a mix release to modify the Erlang node options: ```bash RELEASE_DISTRIBUTION=name RELEASE_NODE=my-app ``` ```elixir config :libcluster,...