Skip to content

Commit

Permalink
PISTON-694: better arg join in ecallmgr_fs_transfer:attended/3 (2600h…
Browse files Browse the repository at this point in the history
  • Loading branch information
danielfinke authored and jamesaimonetti committed Mar 14, 2019
1 parent 0c83741 commit eab21db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applications/ecallmgr/src/ecallmgr_fs_transfer.erl
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ attended(Node, UUID, JObj) ->
],

Props = add_transfer_ccvs_to_vars(CCVs, Vars),
[Export | Exports] = ecallmgr_util:process_fs_kv(Node, UUID, Props, 'set'),
Arg = [Export, [[",", Exported] || Exported <- Exports] ],
Exports = ecallmgr_util:process_fs_kv(Node, UUID, Props, 'set'),
Arg = lists:join(",", lists:flatten(Exports)),

TransferContext = transfer_context(JObj),

Expand Down

0 comments on commit eab21db

Please sign in to comment.