Skip to content

Commit 042f1ef

Browse files
committed
Update to use golang 4.1.4, MQ 9.1.5
1 parent 024739e commit 042f1ef

File tree

16 files changed

+139
-56
lines changed

16 files changed

+139
-56
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
Newest updates are at the top of this file.
33

4+
### Apr 02 2020
5+
* Update to use v4.1.4 of the mq-golang repository
6+
47
### Jan 09 2020
58
* Update to use v4.1.3 of the mq-golang repository
69
* mqmetric - Add DESCR attribute from queues and channels to permit labelling in metrics (ibm-messaging/mq-metric-samples#16)

Gopkg.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Gopkg.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[[constraint]]
22
name = "github.com/ibm-messaging/mq-golang"
3-
version = "4.1.3"
3+
version = "4.1.4"
44

55
[prune]
66
go-tests = true

cmd/mq_prometheus/exporter.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,10 @@ func allocateAllGauges() {
526526
log.Debugf("Subscription Gauges allocated")
527527
allocateQMgrStatusGauges()
528528
log.Debugf("QMgr Gauges allocated")
529-
allocateUsageStatusGauges()
530-
log.Debugf("BP/PS Gauges allocated")
529+
if mqmetric.GetPlatform() == ibmmq.MQPL_ZOS {
530+
allocateUsageStatusGauges()
531+
log.Debugf("BP/PS Gauges allocated")
532+
}
531533
}
532534

533535
/*

vendor/github.com/ibm-messaging/mq-golang/ibmmq/cmqc_darwin.go

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/ibm-messaging/mq-golang/ibmmq/cmqc_linux_amd64.go

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/ibm-messaging/mq-golang/ibmmq/cmqc_linux_ppc64le.go

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/ibm-messaging/mq-golang/ibmmq/cmqc_linux_s390x.go

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)