kotofos
kotofos
``` 10-24 23:02:14.935 I/Xposed (21258): ----------------- 10-24 23:02:14.935 I/Xposed (21258): Starting Xposed version 86, compiled for SDK 23 10-24 23:02:14.935 I/Xposed (21258): Device: LG-D850 (LGE), Android version 6.0.1 (SDK 23)...
As I understand from code, the delete() method does not delete sessions but saves them without values. So it is possible to read them back knowing the ID, but there...
Have the same issue. I see the next steps to reproduce in pyramid app: - Use persistent storage for sessions, set session.timeout - login - save received cookie - logout...
Предлагаю добавить возможность сменить раскладку цифр на телефонную — 123 сверху 789 снизу.
Hi, can you please fix it that way, that this option will actually show notification when timer goes off?
I made fix for this. Seems working fine. https://github.com/tomighty/tomighty-osx/pull/46
The workaround would be to patch the snowflake dialect. The next patch will allow reflection and even displaying basic geography data. ``` import sqlalchemy from snowflake.sqlalchemy import snowdialect snowdialect.ischema_names['GEOGRAPHY'] =...
The problem seems to be that pyhive does not detect stale sessions and does not recreate them. A workaround would be to force connection close/invalidate. I'm using sqlalchemy sessions, and...
Another way is to patch missing .is_disconnect on the dialect ``` def is_disconnect(self, e, connection, cursor): if not isinstance(e, self.dbapi.DatabaseError): return True try: error_msg = e.args[0].status.errorMessage except (AttributeError, IndexError): return...
Any updates?