powellnorma
powellnorma
In a debug build, one can use `adb root`
I think so, since afaik `adb root` has nothing to do with magisk. Why are you asking though? If `adb root` does not work for you, you probably have a...
> Have you tried it? If you have some magisk modules, adb root will not be available Yes, `adb root` still works - I have just double checked it
I have found a solution that works for my device: Add `umount("/sys/fs/pstore");` before the "mirror mounting" logic: https://github.com/topjohnwu/Magisk/blob/15e13a8d8bb61ed896df94881d63903cbfcc516b/native/src/core/bootstages.cpp#L97-L98 My guess is that the system clears up the pstore of "two...
Hm, when I use `Band._meta.db.transaction` it is indeed rolled back. But when I just use `DB.transaction()` it does not. I initialized DB with something like this: ``` DB = PostgresEngine(config={...
They both point to the same config, but they are somehow still not the same object. I can reproduce with code like the following: ```py from piccolo.columns.column_types import Varchar from...
> In engine_finder we could check sys.argv[0] to see what the entrypoint file was. If the PICCOLO_CONF environment variable is the same, we either raise a warning, or swap it...
> Is there any chance that your app has exhausted all connections to Postgres? I don't think so, it just randomly seems to happen every now and then. Do you...
> What kind of stack are you running I indeed use uvloop. I don't use docker, the Starlette App and Postgres both run "natively" on the system. In the postgres...
What is interesting is that this Exception, once it was raised a single time, seems to be raised for all subsequent queries. In the asyncpg log however the line `Connection...