When will Percona Toolkit 3.7.2 be available?

When will Percona Toolkit 3.7.2 be available? I want the fix for Jira

Version 3.7.2 is in active development at the moment, but the release date is not yet known. Mentioned Jira is not fixed, so you will have to wait for the fix first, then for the release.

Thanks @svetasmirnova. Isn’t the simplest fix just to ignore the warning 1287, i.e.

# Completely ignore these error codes.
my %ignore_code = (
   # Error: 1592 SQLSTATE: HY000  (ER_BINLOG_UNSAFE_STATEMENT)
   # Message: Statement may not be safe to log in statement format.
   # Ignore this warning because we have purposely set statement-based
   # replication.
   1592 => 1,
   1300 => 1,
   1287 => 1,
);

Probably. I would investigate when will start working on the fix. I would appreciate if you add this suggestion to tje Jira ticket, so it is not lost.

I’ve updated the JIRA as @svetasmirnova requested.