Vadim Shadrin

Results 10 issues of Vadim Shadrin

No connection, please specify web3host in conf.json [1] node app.js exited with code 1 [0] Error: Web3 connection time out trying to get block undefined retrying connection now I do...

I tried to extend field according to documentation. https://tortoise-orm.readthedocs.io/en/latest/fields.html#extending-a-field But aerich.utils.get_tortoise_config() rised en exception. Error: No config named "config.aerich" I do not understand why? In other cases this method called...

I have the model ``` class Image(TimestampedMixin, Model): id = fields.IntField(pk=True) width = fields.IntField() height = fields.IntField() file = fields.CharField(max_length=64, validators=[TextLengthValidator('file', 1, 255)]) ``` But when I add a new...

I just figured out why we are getting a No change detected message . If we change the model before receives such a message. To fix this, we need to...

Result of QUERY displayed in not table view

from japronto import Application def donotwork(request): access = 1 if isAllow(access,request): return request.Response(text='Hello world!') def work(request): access = 1 if access == 0: return request.Response(headers={'Location': '/notauth'}, code=302) if access ==...

I temporary replace string 76 in /japronto/app/__init__.py - return request.Response(code=404, text='Not Found') + return request.Response(code=302,headers={'Location':'notfound'}) and addroute: /notfound and it's work but . I whould not want to change global...

If I send text in post request all spaces replaced on pluses. urgently need help