diff options
author | Linus Nordberg <linus@nordu.net> | 2017-01-27 15:11:42 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2017-02-01 11:14:41 +0100 |
commit | 829ab97fccb991832445862ec8246197a225ecec (patch) | |
tree | 8152c9e6855537661e7b1521ab45df62fd825e15 /src/perm.erl | |
parent | 9d3d360e9bde66c0b2c37a196635bcfe26872ebe (diff) |
Parallelised merge, distribution phase.
Diffstat (limited to 'src/perm.erl')
-rw-r--r-- | src/perm.erl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/perm.erl b/src/perm.erl index 2e12fdf..e571d23 100644 --- a/src/perm.erl +++ b/src/perm.erl @@ -1,4 +1,4 @@ -%%% Copyright (c) 2015, NORDUnet A/S. +%%% Copyright (c) 2015,2017, NORDUnet A/S. %%% See LICENSE for licensing information. -module(perm). @@ -8,7 +8,8 @@ start_link(Name, Filename) -> Module = application:get_env(plop, db_backend, fsdb), - Module:start_link(Name, Filename). + Options = application:get_env(plop, db_backend_opt, []), + Module:start_link(Name, Filename, Options). stop(Name) -> Module = application:get_env(plop, db_backend, fsdb), |