diff --git a/.github/workflows/scripts/test_install.rb b/.github/workflows/scripts/test_install.rb index 05992113..686b5d7c 100644 --- a/.github/workflows/scripts/test_install.rb +++ b/.github/workflows/scripts/test_install.rb @@ -16,6 +16,7 @@ op.call puts "Looks good!" end + sleep 10 rescue StandardError => e puts "aborting!!! Agent error: #{e.message}" exit false diff --git a/Rakefile b/Rakefile index d70cd83b..9f1ed2fc 100755 --- a/Rakefile +++ b/Rakefile @@ -282,7 +282,7 @@ task :build_gem do puts "\n=== clean & compile & build ===\n" Rake::Task['distclean'].execute - Rake::Task['fetch_oboe_file'].invoke('stg') + Rake::Task['fetch_oboe_file'].invoke('prod') system('gem build solarwinds_apm.gemspec') gemname = Dir['solarwinds_apm*.gem'].first diff --git a/ext/oboe_metal/src/VERSION b/ext/oboe_metal/src/VERSION index 63dba868..2bbd2b4b 100644 --- a/ext/oboe_metal/src/VERSION +++ b/ext/oboe_metal/src/VERSION @@ -1 +1 @@ -14.0.1 +15.0.1 diff --git a/lib/solarwinds_apm/version.rb b/lib/solarwinds_apm/version.rb index 481ab1dc..0b692414 100644 --- a/lib/solarwinds_apm/version.rb +++ b/lib/solarwinds_apm/version.rb @@ -13,7 +13,7 @@ module SolarWindsAPM module Version MAJOR = 6 # breaking, MINOR = 0 # feature, - PATCH = 0 # fix => BFF + PATCH = 1 # fix => BFF PRE = nil STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')