Current datetime bug?

Hi,

In one of my schemas I’m using this formula to get the current time:
Time.now.getutc.strftime(’%H%M%S’)
I know UTC time is always going to be 1 hour off for me, which is fine, but the minutes are off by 8 minutes somehow (even without UTC) and the seconds are a little off too:

Example:
Current local time is 16:56:38
Expected: time returned by my formula is 155638
Actual: time returned by my formula is 160419 (almost 8 minutes ahead of the expected time)

It’s not a breaking issue for me but it’s a little weird so I just wanted to let you know.