diff options
author | Hubert Chathi <hubert@uhoreg.ca> | 2019-10-09 22:02:31 -0400 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2019-10-09 22:02:31 -0400 |
commit | 2c46a4b961c33253765d6ceaf38f7247fefd337e (patch) | |
tree | bed95a3c1238b1b9c89fbf4f155c805a4c9cc243 | |
parent | add changelog and bump version (diff) |
make ETS table public so that the sync process can write to it
-rw-r--r-- | lib/polyjuice/client/storage/ets.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/polyjuice/client/storage/ets.ex b/lib/polyjuice/client/storage/ets.ex index f8a2b03..0fae13b 100644 --- a/lib/polyjuice/client/storage/ets.ex +++ b/lib/polyjuice/client/storage/ets.ex @@ -23,7 +23,7 @@ defmodule Polyjuice.Client.Storage.Ets do ] def open() do - table = :ets.new(:polyjuice_client, []) + table = :ets.new(:polyjuice_client, [:public]) %__MODULE__{ table: table |