diff options
author | Fred Hebert <mononcqc@ferd.ca> | 2019-05-10 08:00:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-10 08:00:00 -0400 |
commit | cbe3292b52802a8ef7b39a40287d1cd8019f46a1 (patch) | |
tree | 0e0380bcdbcef9e6644295ee29fe53ad3e1e01be /priv | |
parent | 203b0de4e45b3b3b1da0a1f2851e99d3ae908aa5 (diff) | |
parent | 137cc48768c69d6ab27ff3d65c4ff1ccf54c4281 (diff) |
Merge pull request #2073 from max-au/missing_comma_sup
supervisor template: add missing comma
Diffstat (limited to 'priv')
-rw-r--r-- | priv/templates/sup.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/templates/sup.erl b/priv/templates/sup.erl index c7d546b..42f5511 100644 --- a/priv/templates/sup.erl +++ b/priv/templates/sup.erl @@ -27,7 +27,7 @@ start_link() -> %% type => worker(), % optional %% modules => modules()} % optional init([]) -> - SupFlags = #{strategy => one_for_all + SupFlags = #{strategy => one_for_all, intensity => 0, period => 1}, ChildSpecs = [], |