summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2019-10-09 22:02:31 -0400
committerHubert Chathi <hubert@uhoreg.ca>2019-10-09 22:02:31 -0400
commit2c46a4b961c33253765d6ceaf38f7247fefd337e (patch)
treebed95a3c1238b1b9c89fbf4f155c805a4c9cc243
parentadd 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.ex2
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