[Jifty-commit] r4048 - in jifty/trunk: lib/Jifty/Plugin

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Thu Sep 6 14:52:01 EDT 2007


Author: jesse
Date: Thu Sep  6 14:51:56 2007
New Revision: 4048

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Plugin/UUID.pm

Log:
 r66786 at pinglin:  jesse | 2007-08-30 20:05:58 -0400
  * we want to compute UUIDs every time. really. it's not useful to always have the same uuid


Modified: jifty/trunk/lib/Jifty/Plugin/UUID.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/UUID.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/UUID.pm	Thu Sep  6 14:51:56 2007
@@ -27,7 +27,7 @@
 use Scalar::Defer;
 my $UUID_GEN = Data::UUID->new();
 
-my $UUID = lazy { $UUID_GEN->create_str() } ;
+my $UUID = defer { $UUID_GEN->create_str() } ;
 sub _uuid {
     my ($column, $from) = @_;
     $column->readable(1);


More information about the Jifty-commit mailing list