Pavel Redyukov
Pavel Redyukov
Updated. Accidentally delete `reflect_tables` from mssql database.
> @dazzgt nice, thanks for this PR. Have you run the e2e tests against any hosts? I ran it against the same subnet where i found this bug. Also there...
@NeffIsBack fixed two ruff errors.
If this solution is not good, then i open to suggestion how to fix it more elegant)
I believe this is because it is not a functionality of netexec, but pipx. You can use documentation of pipx for that but if shortly you need run command: `pipx...
@NeffIsBack documentation of SQLAlchemy says that this is driver error. I think it can be some kind of misuse of concurrention with SQLite. In my project with async tasks i...
> Can you reproduce it consistently somehow? If this a normal setup, or some kind of weird folder structure stuff that could confuse sqlalchemy? UPD: While i wrote this i...
@NeffIsBack lock on session execute completely eradicate of InterfaceError just replaced `self.sess.execute` with `self.db_execute` ``` from threading import Lock class database: def __init__(self, db_engine): self.lock = Lock() def db_execute(self, *args):...
Ok. I found that `IndexError` origin is the same. RowBase use some calls to DB. Most strange behavior for me is that calling `__repr__` of `host_result` call the same `_mapping`...