You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type DBConfig struct {
Password string `help:"Password" xor:"password" optional:""`
PasswordFile string `help:"File which content will be used for a password" xor:"password" optional:""`
PasswordCommand string `help:"Command to run to retrieve password" xor:"password" optional:""`
}
type SourceTargetConfig struct {
Source DBConfig `help:"Database config of source to be copied from" prefix:"source-" embed:""`
Target DBConfig `help:"Database config of source to be copied from" prefix:"target-" embed:""`
}
I get error:
--source-password --target-password can't be used together
The text was updated successfully, but these errors were encountered:
I get error:
The text was updated successfully, but these errors were encountered: