Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ticdc/server: output the cdc server cmd error to stderr #3520

Merged
merged 24 commits into from
Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ac72564
output the cdc server cmd error to stderr, so as to convenietly do tr…
zhaoxinyu Nov 18, 2021
6e55e5c
address comment and upgrade cobra to a latest release version
zhaoxinyu Nov 19, 2021
ccff238
Merge branch 'master' into fix_error_capture_in_cdclog
zhaoxinyu Nov 19, 2021
bd1acd2
Merge branch 'master' into fix_error_capture_in_cdclog
zhaoxinyu Nov 22, 2021
f367857
update go.sum to solve the compile problem
zhaoxinyu Nov 23, 2021
cc1ae36
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 23, 2021
c939927
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 23, 2021
135fe8a
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 23, 2021
606628e
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 24, 2021
d94e36c
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 24, 2021
a702695
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 24, 2021
b9d0f45
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 24, 2021
54db259
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 24, 2021
0e9c4fe
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 26, 2021
015c28a
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 26, 2021
a21919a
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 26, 2021
5419eb0
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 26, 2021
5ea9257
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 26, 2021
fc91adf
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 29, 2021
4302548
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 29, 2021
6544708
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 29, 2021
95e15bb
handle dmctl help flag correctly after upgrading cobra
zhaoxinyu Nov 29, 2021
f32d10b
Merge branch 'master' into fix_error_capture_in_cdclog
ti-chi-bot Nov 29, 2021
c67ff9d
remove the default completion command generated by cobra
zhaoxinyu Nov 29, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ require (
github.com/rakyll/statik v0.1.7
github.com/shopspring/decimal v1.3.0
github.com/soheilhy/cmux v0.1.5
github.com/spf13/cobra v1.0.0
github.com/spf13/cobra v1.2.1
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
Expand Down
Loading