1. 04 Mar, 2021 1 commit
    • Érico Rolim's avatar
      storage/plugins/CurlStorage: don't use glibc extension in · c95e3dc0
      Érico Rolim authored
      ParseTimePoint.
      
      %Z is a glibc extension to strptime, and is a no-op there, due to the
      mapping between timezone names and their definition (especially when the
      name comes from a different machine) being ambiguous / impossible.  Time
      in HTTP headers is guaranteed to be UTC.
      
      Passing an unknown format to strptime() implementations that don't
      support it will generally cause them to return NULL, which will lead to
      ParseTimePoint throwing an exception and ParseTimeStamp using an
      unnecessary fallback.
      
      Since the timezone name goes at the end of the string, we don't need to
      use %Z to skip it (could be an issue in a different time stamp format),
      so simply removing %Z works best.
      c95e3dc0
  2. 25 Feb, 2021 1 commit
  3. 22 Feb, 2021 2 commits
  4. 17 Feb, 2021 2 commits
  5. 16 Feb, 2021 3 commits
  6. 15 Feb, 2021 20 commits
  7. 07 Feb, 2021 6 commits
  8. 21 Jan, 2021 5 commits