AN Long

Results 66 issues of AN Long

cat b.thrift: ```thrift enum Status { OK = 1 ERROR = 2 } ``` cat a.thrift: ```thrift include "b.thrift" struct A { 1: b.Status status 2: b.InvalidType type // notice...

So we can get better error message for which ip / port is called.

Thought we have a thrift file: ```thrift enum TestEnum { a = 1; b = 2; } ``` It's common to create a enum from it's value like this: ```python...

enhancement

For we have thirft file: test.thrift ```thrift struct A { 1: i32 a } typedef A B ``` With generated module, we had `test.B`, with value `(12, test.A)`. I think...

bug

如果用户某个表有联合索引,查询条件要按照索引的顺序,才能正常使用索引。

need-review

We don't check the error which may raised in `wsgi_to_bytes`, and so if we are using invalid type in response header, like using `unicode` in python2, since the value of...

Found this on Linux / macOS, with Python3.5/ 3.7, and meinheld version 1.0.1. Way to reproduce this: ```a.py import flask app = flask.Flask(__name__) @app.route('/') def x(): return 'x' ``` Starting...

We can add a subfolder and marks it as `bin` in `Cargo.toml`, so that we can build a executable with `cargo build` or `cargo install`. There is an example: https://github.com/shadowsocks/shadowsocks-rust/blob/master/Cargo.toml...

enhancement