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

Refactor mirror command #860

Merged
merged 44 commits into from
Nov 23, 2020
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
fdcd0c8
Merge (WIP)
lucklove Oct 22, 2020
6ebacf2
Support modify
lucklove Oct 22, 2020
57cf798
Remove modify
lucklove Oct 22, 2020
42f91f9
Refactor server
lucklove Oct 26, 2020
c3601c7
Support mirror merge
lucklove Oct 28, 2020
4f091a1
Fix mirror init
lucklove Oct 28, 2020
84baf58
Support introduce command
lucklove Oct 28, 2020
027ba79
Enhance genkey
lucklove Oct 29, 2020
f5c9bc0
tidy mirror command
lucklove Oct 29, 2020
d3eee02
Fix test
lucklove Oct 29, 2020
4ef91f3
Fix test
lucklove Oct 29, 2020
a55a746
Merge branch 'master' into merge
lucklove Oct 29, 2020
9d491da
Merge branch 'master' into merge
lucklove Nov 3, 2020
7ced4be
Add intergrate test
lucklove Nov 3, 2020
dd9964d
Fix test
lucklove Nov 4, 2020
5ca2be0
Try to fix test
lucklove Nov 4, 2020
ad338ee
Fix test
lucklove Nov 4, 2020
16f8df0
Disable failpoinet
lucklove Nov 4, 2020
ef17b4c
Add unit test
lucklove Nov 4, 2020
1eff3e2
Merge remote-tracking branch 'upstream/master' into merge
lucklove Nov 5, 2020
23b29c5
Add store test
lucklove Nov 5, 2020
3de3767
Fix OutputAuditLog on concurrent output
lucklove Nov 5, 2020
d2e238c
Test test
lucklove Nov 5, 2020
1b52836
Fix test
lucklove Nov 5, 2020
bc188f6
Use unix nano to debug
lucklove Nov 5, 2020
7c53d4b
Use filesystem timestamp in case of remote FS
lucklove Nov 6, 2020
6f5b838
Fix lint
lucklove Nov 6, 2020
be36454
Fix test
lucklove Nov 6, 2020
f60d456
Fix test
lucklove Nov 6, 2020
db4638b
To fail
lucklove Nov 6, 2020
0087e84
test
lucklove Nov 6, 2020
29e547b
Cleanup test
lucklove Nov 6, 2020
64eba50
Add debug log
lucklove Nov 6, 2020
a85ac3d
Workaround
lucklove Nov 7, 2020
51a16a0
Remove debug info
lucklove Nov 7, 2020
277a36d
More reasonable modify time
lucklove Nov 9, 2020
4281589
Address comment
lucklove Nov 9, 2020
3ff5453
Update cmd/mirror.go
lucklove Nov 17, 2020
b018aa1
Use grant to replace introduce
lucklove Nov 17, 2020
f72f1ac
Merge branch 'merge' of https://github.com/lucklove/tiup into merge
lucklove Nov 20, 2020
173063c
Address comment
lucklove Nov 21, 2020
802b2b7
Tidy go.sum
lucklove Nov 23, 2020
75553c1
Merge branch 'master' into merge
lucklove Nov 23, 2020
986fe85
Fix lint
lucklove Nov 23, 2020
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: 2 additions & 0 deletions cmd/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ var envList = []string{
localdata.EnvNameSSHPassPrompt,
localdata.EnvNameSSHPath,
localdata.EnvNameSCPPath,
localdata.EnvNameKeepSourceTarget,
localdata.EnvNameMirrorSyncScript,
}

func newEnvCmd() *cobra.Command {
Expand Down
Loading