(lhs, rhs)
| 69 | } |
| 70 | |
| 71 | function topologyDescriptionDiff(lhs, rhs) { |
| 72 | const simpleFields = [ |
| 73 | 'type', |
| 74 | 'setName', |
| 75 | 'maxSetVersion', |
| 76 | 'stale', |
| 77 | 'compatible', |
| 78 | 'compatibilityError', |
| 79 | 'logicalSessionTimeoutMinutes', |
| 80 | 'error', |
| 81 | 'commonWireVersion' |
| 82 | ]; |
| 83 | |
| 84 | return diff(lhs, rhs, simpleFields, (x, y) => x === y).join(',\n'); |
| 85 | } |
| 86 | |
| 87 | function visualizeMonitoringEvents(client) { |
| 88 | function print(msg) { |
no test coverage detected