Project

General

Profile

Actions

Bug #18437

closed

Product Create scarcely fails with InvalidFormatException in candlepin

Added by Ivan Necas almost 8 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Category:
Subscriptions
Target version:
Fixed in Releases:
Found in Releases:

Description

The problem seems to be in using DateTime in json in https://github.com/Katello/katello/blob/aad62cc6dae670565218f7434a4e908550244b41/app/lib/katello/resources/candlepin.rb#L686

It seems ActiveSupport's DateTime has some issues with formating the time.

It's not that hard to get an invalid date with it (with 1000 on milisends)

x = nil; 100000.times { x = (DateTime.now + 10_950.days).to_json; break unless x.size == 31 }; puts x
# => "2047-02-01T23:42:09.1000+01:00" 

Using Time doesn't seem to have the problem

x = nil; 100000.times { x = (Time.now + 10_950.days).to_json; break unless x.size == 31 }; puts x
# = "2047-02-01T23:42:50.906+01:00" 
Actions

Also available in: Atom PDF