Gavi Galloway

Results 4 issues of Gavi Galloway

To use TenantModel with Django Rest Framework's ViewSets, the following refactor was necessary: ```python # before class MyModelViewSet(GenericViewSet): queryset = MyModel.objects.all() ``` ```python # after class MyModelViewSet(GenericViewSet): def get_queryset(self): return...

view integration
tips & tricks

## Summary of Bug When `--db_dir` is set via command line args or via `config.toml`, tendermint still stores its state in `~/.sommelier/data` ## Version 2.0.0 ## Reproduction Steps Run sommelier...

## Summary of Bug Sommelier ignores the `log_level` command-line/toml config, except for the first time it is run. An `unsafe-reset-all` and a wipe of `~/.sommelier/data` is required for sommelier to...