4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Livebookでprotocolを扱いたい場合

4
Last updated at Posted at 2023-03-30

現象

Livebookでモジュールにprotocolを実装する場合、そのままでは以下警告が出て上手く動作しないことがある。

warning: the XXXX protocol has already been consolidated, an implementation for Unzip.S3File has no effect.
If you want to implement protocols after compilation or during tests, check the "Consolidation" section in the Protocol module documentation

対策

Mix.installにconsolidate_protocols: falseを追加する

Mix.install(
  [
    deps
  ],
  consolidate_protocols: false
)

参考

Although doing so is not recommended as it may affect the performance of your code.

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?