Skip to content
#

transactions

Here are 445 public repositories matching this topic...

rohitsud
rohitsud commented May 18, 2020

https://github.com/sequelize/sequelize/blob/8a1429d6044123bba3a3f312b2e0c74b0c829990/lib/model.js#L1271

If I create any model with
charset: 'utf8mb4', collate: 'utf8mb4_general_ci'

sequelize translates it to this for mysql

CREATE TABLE IF NOT EXISTS tablename ... ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8mb4_general_ci;

On stepping through the code, it seems that the issu

type: bug good first issue
locker
locker commented May 18, 2022

When box.cfg.listen is set to a port number (without specifying a host name), Tarantool binds to one address, ipv4 or ipv6:

box.cfg{listen = 3301}
$ nc -vvz 127.0.0.1 3301
Connection to 127.0.0.1 3301 port [tcp/*] succeeded!
$ nc -vvz ::1 3301
nc: connect to ::1 port 3301 (tcp) failed: Connection refused

This is confusing - one would expect it to bind to all av

feature good first issue
iroha
s8sato
s8sato commented May 27, 2022

Currently, only query errors retain their type in the API response.
If other Torii errors do as well instead of being stringified, the client can restore the error response to torii::Error or an equivalent type.
This allows for more reliable error handling

good first issue iroha2 api-changes

Improve this page

Add a description, image, and links to the transactions topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the transactions topic, visit your repo's landing page and select "manage topics."

Learn more