onthegit
onthegit
Os: Linux Fedora Blog.proto: ``` syntax = "proto3"; message GetPostIn { string Path =1; } message GetPostRet { bool Success=1; string Msg=2; string Post=3; } service BlogService { rpc GetPost(GetPostIn)...
It appears that you have incorporated my changes from https://github.com/legokichi/ts-ebml/pull/41 into this one so I will close mine. @legokichi gentle ping :)
5.5.60-MariaDB server
Actually upon doing second test, it appears that the database is not set in any of the connections in the connection pool.
Here is the code I use: MySQLConnectOptions mc = new MySQLConnectOptions().setPort(3000).setHost("dbhost").setDatabase("database").setUser("user").setPassword("secret").setSslMode(SslMode.VERIFY_CA).setPemTrustOptions(new PemTrustOptions().addCertPath("/app/ca-cert.pem")).setCachePreparedStatements(false); PoolOptions poolOptions = new PoolOptions().setMaxSize(5); MySQLPool _dbPool = MySQLPool.pool(vertx, mc, poolOptions); for (int i = 0; i <...
The db server is on centos 7 linux, while vertx runs on Fedora 30.
Is there a way to debug this?
My PR #153 has callback function that will allow you to modify/add/remove attributes of HTML elements with your own business logic before they are parsed by bluemonday.
@q191201771 where did you address this issue in your code?
@q191201771 from what I've seen from this issue and my own investigating is that the remote chunk size differs from the actual remote chunk size that was set. e.g the...