From b3e8abbaba7baccf774e45f4184bd537c0640ce3 Mon Sep 17 00:00:00 2001 From: Ramin Motakef Date: Wed, 29 Oct 2014 15:12:28 +0100 Subject: [PATCH] add empty string as second arg to base64encode to speed up loading of fixtures with external file data. --- lib/DBIx/Class/Fixtures.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/DBIx/Class/Fixtures.pm b/lib/DBIx/Class/Fixtures.pm index f674b19..77f5f7f 100644 --- a/lib/DBIx/Class/Fixtures.pm +++ b/lib/DBIx/Class/Fixtures.pm @@ -868,7 +868,7 @@ sub dump_object { $ds{external}->{$field} = encode_base64( $class - ->backup($key => $args)); + ->backup($key => $args),''); } }