Skip to content
Snippets Groups Projects
  1. Oct 26, 2013
  2. Aug 13, 2013
  3. Jul 22, 2013
  4. Jan 16, 2013
  5. Dec 20, 2012
    • Robert Anderson's avatar
      Fix use of signed vs unsigned numerics · a9b78014
      Robert Anderson authored
      
      Replaced the incorrect use of @BIG_INTEGER@ variable which
      implied that the numerical value would be signed (default
      in at least MySQL).
      
      Note: PostgreSQL does not support signed/unsigned numerics,
      INT8 has been kept for this reason.
      
      Change-Id: I5a0892f7e14f723d5b35f8beca5138890f3e550c
      Signed-off-by: default avatarRobert Anderson <randerson@lbsd.net>
      a9b78014
  6. Nov 10, 2012
  7. Sep 06, 2012
  8. Jul 30, 2012
  9. Jul 27, 2012
  10. Jul 11, 2012
  11. Jun 21, 2012
  12. Jun 08, 2012
  13. Jun 01, 2012
  14. May 10, 2012
  15. Mar 30, 2012
  16. Nov 24, 2011
  17. Oct 31, 2011
  18. Aug 31, 2011
  19. Jul 31, 2011
  20. Jul 07, 2011
  21. May 06, 2011
  22. May 03, 2011
    • Robert Anderson's avatar
      Use size values as kbyte instead of byte · 618b3a85
      Robert Anderson authored
      Convert bytes to kbytes on a new request
      Removed accounting bytes to kbytes conversion as the session value is used
      Updated UPGRADING file with details on how to modify the database to accommodate the changes to policyd
      
      NOTE: This commit will change the behaviour of message size counters used in policyd!
      
      The following changes will need to be made to your database:
      
      UPDATE quotas_limits, quotas_tracking
                      SET quotas_limits.CounterLimit = ceil(quotas_limits.CounterLimit / 1024),
                      quotas_tracking.Counter = ceil(quotas_tracking.Counter / 1024)
                      WHERE quotas_tracking.QuotasLimitsID = quotas_limits.ID
                      AND quotas_limits.Type = "MessageCumulativeSize";
      
      UPDATE session_tracking SET Size = ceil(Size / 1024);
      618b3a85
  23. Mar 26, 2011
  24. Feb 04, 2011
  25. Jan 19, 2011
Loading