File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
daemon/internal/newrelic/integration Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- 11.1 .0
1
+ 11.2 .0
Original file line number Diff line number Diff line change 23
23
/*
24
24
* Current version naming scheme is flowers
25
25
*
26
- * cosmos 29Jun2022 (10.0)
27
26
* dahlia 19Sep2022 (10.1)
28
27
* echinacea 03Oct2022 (10.2)
29
28
* freesia 03Nov2022 (10.3)
47
46
* xerophyllum 20May2024 (10.21)
48
47
* yarrow 26Jun2024 (10.22)
49
48
* zinnia 30Jul2024 (11.0)
49
+ * amethyst 26Aug2024 (11.1)
50
50
*/
51
- #define NR_CODENAME "amethyst "
51
+ #define NR_CODENAME "bowenite "
52
52
53
53
const char * nr_version (void ) {
54
54
return NR_STR2 (NR_VERSION );
Original file line number Diff line number Diff line change @@ -549,7 +549,7 @@ func (t *Test) compareMetricsExist(harvest *newrelic.Harvest) {
549
549
// actually the "satisfied" count, not a total count of metric
550
550
// as it is for other types of metrics
551
551
apdex_metric := strings .HasPrefix (expected , "Apdex/" )
552
- if (count == - 1 && ( apdex_metric || actualCount > 0 )) || (actualCount == count ) {
552
+ if (apdex_metric || ( count == - 1 && actualCount > 0 )) || (actualCount == count ) {
553
553
metricPasses = true
554
554
}
555
555
You can’t perform that action at this time.
0 commit comments