Replies: 1 comment
-
I feel it's not related to AWS, but probably how the server is started is different from local env. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone! I've created a telegram bot with gino. When I start this bot on my computer everything work fine. But when I try to start it on AWS server, it works until bot doesn't get some code with gino.
I get this error: gino.exceptions.UninitializedError: Gino engine is not initialized.
For example, an error in these parts of code:
request = await Info.query.where(Info.id == user_id).gino.all()
Info.delete.where(message.from_user.id == Info.id).gino.status()
Could you tell me, why I have this problem in the server, if I don't have any problems when I start this bot on my computer? And how can I solve this problem?
Beta Was this translation helpful? Give feedback.
All reactions