You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
S3: Format x-amz-date with year-of-era (akka#679)
"YYYY" in `DateTimeFormatter.ofPattern("YYYYMMdd")` means
week-based-year, which formats `LocalDate.of(2017, 12, 31)` as
"20181231" and results in unexpected rejections from S3 as below:
> The difference between the request time and the current time is
too large.
Replacing it with "yyyy" fixes the bug.
Merge pull request akka#222 from matsluni/more_options_on_configurati…
…on_of_connectionFactory
AMQP: add more options to configuration of the ConnectionFactory, akka#191