Thomas Harold

Results 13 comments of Thomas Harold

Things that might improve the user experience: - Report the repository UUID in the error message - Report the local time in the cache / vs remote time of the...

Definitely seems to be related to the size of the directory created in /tmp, once that file exceeds 2GB, attic check will crash with the overflow error.

I'll have to give it a try. What I found was re-running "attic --check --repository-only" would constantly give errors at different locations as shown. It wasn't until I ran "attic...

This still happens in 0.16. Running "attic check" against the repository results in different segment numbers being reported. MsgPack version on the origin machine (the one being backed up): ```...

Thanks. The reason I noticed this is because I'm trying to setup a process where I create a test database (using an xUnit fixture) and then also drop the database...

I've [refactored](https://github.com/tgharold/FMTestHelper/tree/db9144cad9aaf2838cd815f8d3d4092d8367f6b2/test) enough to show that it happens with the PostgreSQL migrator as well.

Is this a .NET Core project where you are using `AddFluentMigratorCore()`? If so, you need to register the `IConventionSet` *after* making the `AddFluentMigratorCore()` call in `Startup.ConfigureServices()`. See [this sample for...

If the bug is that AddFluentMigratorCore() is registering a 2nd instance when an IConventionSet has already been registered, I do have a branch which will use `TryAddScoped()` instead of `AddScoped()`...

Yes, I pulled [TryAddScoped out of the MS documentation](https://docs.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection?view=aspnetcore-3.1#service-registration-methods) while doing some other work. > Generally, this method is used by library authors to avoid registering two copies of an...

> if the dispatch is to a remote repository, not the local one associated with the GITHUB_TOKEN. We created a GitHub App and used https://github.com/tibdex/github-app-token to generate a new GITHUB_TOKEN...