Skip to content

Commit

Permalink
fixing get_active_transfers last_update bug
Browse files Browse the repository at this point in the history
  • Loading branch information
drewkerrigan committed Aug 3, 2016
1 parent 2b44d5d commit bfe3237
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/re_node_control.erl
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ get_active_transfers({status_v2, Status}) ->
StatsPropList ->
ObjsS = proplists:get_value(objs_per_s, StatsPropList),
BytesS = proplists:get_value(bytes_per_s, StatsPropList),
LastUpdate = proplists:get_value(last_update, StatsPropList),
LastUpdate = datetime_str(proplists:get_value(last_update, StatsPropList)),
Objs = proplists:get_value(objs_total, StatsPropList),
Size = proplists:get_value(size, StatsPropList),
DonePctDecimal = proplists:get_value(pct_done_decimal, StatsPropList),
Expand Down

0 comments on commit bfe3237

Please sign in to comment.