Skip to content

Commit

Permalink
Merge pull request #336 from rapid7/CucumberEsoSpringUrlFix
Browse files Browse the repository at this point in the history
remove preceding slash from url for spring 4.3.30 minor upgrade nexpose
  • Loading branch information
kmcwhirter-r7 authored Nov 17, 2023
2 parents 78a1139 + d9f6691 commit 7cb6a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/eso/configuration/configuration_manager.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def configuration_type(service_name:)
# return [JSON] A json object representing a configuration
# TODO : Update to use an Eso::Configuration
def get_configuration(configuration_id)
json_data = ::Nexpose::AJAX.get(@nexpose_console, "#{@url}/service/configuration/id/#{configuration_id}", ::Nexpose::AJAX::CONTENT_TYPE::JSON)
json_data = ::Nexpose::AJAX.get(@nexpose_console, "#{@url}service/configuration/id/#{configuration_id}", ::Nexpose::AJAX::CONTENT_TYPE::JSON)
JSON.parse(json_data, :symbolize_names => true)
end

Expand Down

0 comments on commit 7cb6a1d

Please sign in to comment.