diff options
author | Brian Freeman <bf1936@att.com> | 2018-04-17 08:00:37 -0500 |
---|---|---|
committer | Brian Freeman <bf1936@att.com> | 2018-04-17 08:00:49 -0500 |
commit | a5fe4cc91b91b3a2755929b6c1dbaa94de274aea (patch) | |
tree | b4efb2251519b4103ef1d93a72a7b7d8f4538ab5 /robot/resources | |
parent | 5a92334c36554cc4a3dce1cdac6c79ce49e20de4 (diff) |
Fix MUSIC HealthCheck URL
Issue-ID: MUSIC-71
Change-Id: I36b8e01d26fa79f1c4d35b387957bbbfc0aa5a2e
Signed-off-by: Brian Freeman <bf1936@att.com>
Diffstat (limited to 'robot/resources')
-rw-r--r-- | robot/resources/music/music_interface.robot | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/robot/resources/music/music_interface.robot b/robot/resources/music/music_interface.robot index cde2d3db..456e119b 100644 --- a/robot/resources/music/music_interface.robot +++ b/robot/resources/music/music_interface.robot @@ -7,7 +7,7 @@ Library UUID Resource ../global_properties.robot *** Variables *** -${MUSIC_HEALTH_CHECK_PATH} /MUSIC/rest/version +${MUSIC_HEALTH_CHECK_PATH} /MUSIC/rest/v2/version ${MUSIC_ENDPOINT} ${GLOBAL_MUSIC_SERVER_PROTOCOL}://${GLOBAL_INJECTED_MUSIC_IP_ADDR}:${GLOBAL_MUSIC_SERVER_PORT} *** Keywords *** @@ -25,4 +25,4 @@ Run MUSIC Get Request ${headers}= Create Dictionary Accept=application/json Content-Type=application/json X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID} ${resp}= Get Request music ${data_path} headers=${headers} Log Received response from music ${resp.text} - [Return] ${resp}
\ No newline at end of file + [Return] ${resp} |