hustjieke

Results 46 issues of hustjieke

sometimes next test cases run failed. ``` === RUN TestNormalTicker Error Trace: common_test.go:85 Error: Not equal: expected: 1 received: 0 --- FAIL: TestNormalTicker (0.10s) === RUN TestCommand Error Trace: linux_test.go:71...

type: bug
P0

[summary] rename function name like: Start() ---> GenerateStartCmd() [test case] N/A [patch codecov] N/A

Now "check replication users" is in mysql.Ping(). This has nothing to do with the function of Ping(). ``` PIng() { ... CheckUserExists() ... } ``` We should mv it out...

type: refactoring
P1

Distinguish the system library, self-built and vendor library. e.g., next should be adjusted: ``` import ( "build" "config" "flag" "fmt" "log" "net/http" _ "net/http/pprof" "os" "server" "xbase/xlog" ) ``` to...

type: propose
P0

fix some bad code style, like: ``` r.lock.Add(1) ``` should be channed to ``` r.wg.Add(1) ``` ---------- ``` func (l *LinuxArgs) Start() []string { ``` should be changed to ```...

type: propose
P0

Now xenon check the mysqld_safe --defaults-file=[] process is running by bash, if mysql and xenon are not in the same machine, how can it work? Maybe we can use ping()...

type: feature
P1

The test case errors I met like next, should I need to do some configraion before I run make test?: On Mac: ``` === RUN TestNormalTicker --- FAIL: TestNormalTicker (0.10s)...

type: question