From 829ab97fccb991832445862ec8246197a225ecec Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Fri, 27 Jan 2017 15:11:42 +0100 Subject: Parallelised merge, distribution phase. --- src/perm.erl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/perm.erl') 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), -- cgit v1.1