Page MenuHomePhorge

No OneTemporary

Size
625 B
Referenced Files
None
Subscribers
None
diff --git a/lib/captcha.ex b/lib/captcha.ex
index a27025d..6a56835 100644
--- a/lib/captcha.ex
+++ b/lib/captcha.ex
@@ -1,16 +1,17 @@
defmodule Captcha do
- def get(timeout \\ 50_000) do
+ # allow customize receive timeout, default: 10_000
+ def get(timeout \\ 1_000) do
Port.open({:spawn, Path.join(:code.priv_dir(:captcha), "captcha")}, [:binary])
# Allow set receive timeout
receive do
{_, {:data, data}} ->
<<text::bytes-size(5), img::binary>> = data
{:ok, text, img }
other -> other
after timeout ->
- { :timeout }
+ {:timeout}
end
end
end

File Metadata

Mime Type
text/x-diff
Expires
Mon, Nov 25, 1:41 PM (1 d, 11 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39808
Default Alt Text
(625 B)

Event Timeline