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

Fix Sqlite DB on Windows #918

Merged
merged 1 commit into from
Nov 5, 2019
Merged

Fix Sqlite DB on Windows #918

merged 1 commit into from
Nov 5, 2019

Commits on Nov 5, 2019

  1. Sqlite: Fix DB migrations on Windows

    The wallet failed with:
    
        NUL: openFile: does not exist (No such file or directory)
    
    This is due to runMigrationSilent which uses the silently library:
    
    http://hackage.haskell.org/package/silently-1.2.5.1/docs/src/System.IO.Silently.html#line-27
    
    To fix, we swap runMigrationSilent with runMigrationQuiet (added in
    persistent-2.10.2).
    rvl committed Nov 5, 2019
    Configuration menu
    Copy the full SHA
    23875ba View commit details
    Browse the repository at this point in the history