Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Merge pull request #106 from github/identify-gtid
Browse files Browse the repository at this point in the history
Identify gtid
  • Loading branch information
Shlomi Noach authored Mar 21, 2017
2 parents 90efec4 + ecd4bc6 commit 05241ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/public/js/orchestrator.js
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ function normalizeInstance(instance) {
instance.replicationAttemptingToRun = instance.Slave_SQL_Running || instance.Slave_IO_Running;
instance.replicationLagReasonable = Math.abs(instance.SlaveLagSeconds.Int64 - instance.SQLDelay) <= 10;
instance.isSeenRecently = instance.SecondsSinceLastSeen.Valid && instance.SecondsSinceLastSeen.Int64 <= 3600;
instance.usingGTID = instance.UsingOracleGTID || instance.UsingMariaDBGTID;
instance.usingGTID = instance.UsingOracleGTID || instance.SupportsOracleGTID || instance.UsingMariaDBGTID;
instance.isMaxScale = (instance.Version.indexOf("maxscale") >= 0);

// used by cluster-tree
Expand Down

0 comments on commit 05241ab

Please sign in to comment.