Monks, I'm seeing some very odd behavior I think might be a bug (in Moose?) but maybe I'm missing something more basic.

So I've got this line of code:

$event->polished_data->{start} = $event->start_time;

$event is an object created with Moose, polished_data is an attribute and isa HashRef. $event->start_time is a Time::Piece object. Yes, I am copying the Time::Piece from one part of the object to another.

Here's where the weirdness comes in. After the assignment, when I Dumper the event, sometime the value indexed by the start is the Time::Piece object and and the value of $event->start_time looks like this: $VAR1->{'polished_data'}{'start'}. What's really weird is the rest of the time (about 50% of the time), $event->start_time is the Time::Piece object and the indexed value in the hash is $VAR1->{'polished_data'}{'start'}. Witness:

$VAR1 = bless( { 'event_id' => '2927', 'post_id' => 0, 'polished_data' => { 'start' => bless( [ 0, 0, 19, 28, 2, 116, 1, 87, 1, 1459206000, 1 ], 'Time::Piec +e' ), }, 'start_time' => $VAR1->{'polished_data'}{'start'}, }, 'Event' ); $VAR1 = bless( { 'start_time' => bless( [ 0, 0, 18, 11, 3, 116, 1, 101, 1, 1460412000, 1 ], 'Time::Piece' ), 'polished_data' => { 'start' => $VAR1->{'start_time'} +, }, }, 'Event' );

If anyone can explain what's going on and help me workaround this issue, I'd greatly appreciate it.

$PM = "Perl Monk's";
$MCF = "Most Clueless Friar Abbot Bishop Pontiff Deacon Curate";
$nysus = $PM . ' ' . $MCF;
Click here if you love Perl Monks


In reply to Very odd behavior assigning Time::Piece object to hash reference inside of an object by nysus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.