From fddc57dc63351e69c48b3cd3e1a2f3a7ff51b6ec Mon Sep 17 00:00:00 2001 From: Ahmed Ejaz Date: Fri, 13 Oct 2023 02:22:12 +0500 Subject: [PATCH] #2153, add slash and root constants --- lib/new_relic/constants.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/new_relic/constants.rb b/lib/new_relic/constants.rb index 847b73a994..2a8aafb1c2 100644 --- a/lib/new_relic/constants.rb +++ b/lib/new_relic/constants.rb @@ -35,4 +35,7 @@ module NewRelic CONNECT_RETRY_PERIODS = [15, 15, 30, 60, 120, 300] MAX_RETRY_PERIOD = 300 + + SLASH = '/' + ROOT = SLASH end