Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:newrelic/newrelic-php-agent into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
zsistla committed Sep 10, 2024
2 parents 108af43 + 8a5c2f8 commit 393ca93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11.1.0
11.2.0
4 changes: 2 additions & 2 deletions axiom/nr_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
/*
* Current version naming scheme is flowers
*
* cosmos 29Jun2022 (10.0)
* dahlia 19Sep2022 (10.1)
* echinacea 03Oct2022 (10.2)
* freesia 03Nov2022 (10.3)
Expand All @@ -47,8 +46,9 @@
* xerophyllum 20May2024 (10.21)
* yarrow 26Jun2024 (10.22)
* zinnia 30Jul2024 (11.0)
* amethyst 26Aug2024 (11.1)
*/
#define NR_CODENAME "amethyst"
#define NR_CODENAME "bowenite"

const char* nr_version(void) {
return NR_STR2(NR_VERSION);
Expand Down
2 changes: 1 addition & 1 deletion daemon/internal/newrelic/integration/test.go
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ func (t *Test) compareMetricsExist(harvest *newrelic.Harvest) {
// actually the "satisfied" count, not a total count of metric
// as it is for other types of metrics
apdex_metric := strings.HasPrefix(expected, "Apdex/")
if (count == -1 && (apdex_metric || actualCount > 0)) || (actualCount == count) {
if (apdex_metric || (count == -1 && actualCount > 0)) || (actualCount == count) {
metricPasses = true
}

Expand Down

0 comments on commit 393ca93

Please sign in to comment.