Grigoriy Ovechkin
My feedback
10 results found
-
1 vote
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.—
IGGrigoriy Ovechkin shared this idea ·
-
62 votes
We don't think running wp-cli in a chroot shell is enough -- so in addition to this we're adding the ability to run wp-cli directly from WP Toolkit interface in the upcoming WPT v6.7 update.
Grigoriy Ovechkin supported this idea ·
-
23 votes
Thank you for your input! We will consider this functionality for the upcoming releases if it becomes popular enough.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin shared this idea ·
-
24 votes
Thank you for your input! We will consider this functionality in upcoming releases, if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGGrigoriy Ovechkin shared this idea ·
-
10 votes
An error occurred while saving the comment An error occurred while saving the comment Grigoriy Ovechkin commented
Add possibility to Backup mysql databases with "--skip-lock-tables" option.
Grigoriy Ovechkin supported this idea ·
-
202 votes
Thank you for your input! We are planning to implement this functionality in upcoming releases. The request is registered as: PPM-2517
Everyone, please continue voting for this feature if you consider it important.
— ES
Grigoriy Ovechkin supported this idea ·
-
20 votes
Thank you for your input! We will consider this functionality in upcoming releases if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
—
IGAn error occurred while saving the comment Grigoriy Ovechkin commented
Please change DNS to DSN.
Grigoriy Ovechkin shared this idea ·
-
186 votes
Thank you for your input! We will consider this functionality in upcoming releases, if it will be popular.
Everyone, please continue voting for this feature if you consider it important.
— ES
Grigoriy Ovechkin supported this idea ·
-
91 votes
Grigoriy Ovechkin supported this idea ·
-
43 votes
Grigoriy Ovechkin supported this idea ·
There is a workaround:
# cat /usr/local/psa/PMM/agents/shared/Db/MysqlShellBackend.pm
...
$cmd .= " --socket='$self->{socket}'" if $self->{socket};
$cmd .= " -h '$self->{host}'" if $self->{host};
$cmd .= " -u '$self->{user}'";
$cmd .= " -P '$self->{port}'" if $self->{port};
if (index($cmd, AgentConfig::mysqldumpBin()) != -1) {
$cmd .= " --skip-lock-tables";
}
$cmd .= " $additionalOptions" if $additionalOptions;
...