Skip to content
Snippets Groups Projects
  1. Nov 16, 2016
    • Pieter Slabbert's avatar
      Trim null characters in Value data format (#2049) · 196509cc
      Pieter Slabbert authored
      * Trim null characters in Value data format
      
      Some producers (such as the paho embedded c mqtt client) add a null
      character "\x00" to the end of a message.  The Value parser would fail on
      any message from such a producer.
      
      * Trim whitespace and null in all Value data formats
      
      * No unnecessary reassignments in Value data format parser
      
      * Update change log for Value data format fix
      196509cc
  2. Nov 15, 2016
  3. Nov 11, 2016
  4. Nov 10, 2016
  5. Nov 08, 2016
  6. Nov 07, 2016
  7. Nov 04, 2016
  8. Nov 03, 2016
  9. Nov 02, 2016
  10. Oct 27, 2016
  11. Oct 26, 2016
  12. Oct 25, 2016
  13. Oct 24, 2016
    • Cameron Sparr's avatar
      http_listener input unit tests · c849b58d
      Cameron Sparr authored
      c849b58d
    • Cameron Sparr's avatar
      http listener refactor · 097b1e09
      Cameron Sparr authored
      in this commit:
      
      - chunks out the http request body to avoid making very large
        allocations.
      - establishes a limit for the maximum http request body size that the
        listener will accept.
      - utilizes a pool of byte buffers to reduce GC pressure.
      097b1e09
  14. Oct 21, 2016
  15. Oct 17, 2016
  16. Oct 12, 2016
    • Cameron Sparr's avatar
      Use mysql.ParseDSN func instead of url.Parse · a65447d2
      Cameron Sparr authored
      The MySQL DB driver has it's own DSN parsing function. Previously we
      were using the url.Parse function, but this causes problems because a
      valid MySQL DSN can be an invalid http URL, namely when using some
      special characters in the password.
      
      This change uses the MySQL DB driver's builtin ParseDSN function and
      applies a timeout parameter natively via that.
      
      Another benefit of this change is that we fail earlier if given an
      invalid MySQL DSN.
      
      closes #870
      closes #1842
      a65447d2
    • Cameron Sparr's avatar
      Log config file parsing errors properly · b00ad65b
      Cameron Sparr authored
      closes #1344
      b00ad65b
Loading