Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hash dump fixes #133

Commits on Jul 10, 2018

  1. Change internal storage iterator to return keys as hash_t

    Keys are now stored internally as hash_t, but the iterator was interpreting
    them as strings, which led to a misunderstanding about the key type. It's
    safer to rely on the type system and adapt the iterator to explicitly use
    hash_t.
    Gavin Norman committed Jul 10, 2018
    Configuration menu
    Copy the full SHA
    696cc4b View commit details
    Browse the repository at this point in the history
  2. Hack channel loader to support both string and hash_t keys

    Due to an error in not adpating the dump writer correctly, it is possible
    that dump files exist in an unsupported format (with keys written as
    hash_t). We need to temporarily support loading both formats.
    Gavin Norman committed Jul 10, 2018
    Configuration menu
    Copy the full SHA
    3221f13 View commit details
    Browse the repository at this point in the history