Reputation: 1
I have run the sample Python script provide by you on your website. I get an sql error:
**E(0108-124524-289)(9417): sql error in insert: insert into messages (mid, gid, channel, type, ts, status, expiry, flag, sender, message, thumbnail, filepath, rts, uflags) VALUES ("961428429235933", 0, 0, 0, 1596216731289, 18, 0, 0, ?, ?, ?, ?, 0, 0) (constraint failed)**
**Segmentation fault (core dumped)**
Could someone help me out?
Upvotes: 0
Views: 114
Reputation: 4333
Most likely you are prematurely exiting from the script and hence the crash. Note that mesibo.start() is an async call and it returns immediately. If you are not doing anything after mesibo.start(), use some kind of wait call or use mesibo.wait()
Upvotes: 0
Reputation: 68
Clear your database and see if the issue persists. Ensure you are using the latest version of mesibo python package. Try running this script
Upvotes: 1