Mercurial > hg > orthanc
changeset 4176:0a954155aea5
fix echo request in connectivity check
author | Alain Mazy <alain@mazy.be> |
---|---|
date | Thu, 03 Sep 2020 12:00:35 +0200 |
parents | 8f0de3998a59 |
children | f0d81320f17f |
files | OrthancServer/Plugins/Samples/ConnectivityChecks/WebResources/app.js |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/OrthancServer/Plugins/Samples/ConnectivityChecks/WebResources/app.js Thu Sep 03 11:41:30 2020 +0200 +++ b/OrthancServer/Plugins/Samples/ConnectivityChecks/WebResources/app.js Thu Sep 03 12:00:35 2020 +0200 @@ -42,7 +42,7 @@ this.dicomNodes[alias]['alias'] = alias; this.dicomNodes[alias]['status'] = 'testing'; axios - .post('../../modalities/' + alias + '/echo') + .post('../../modalities/' + alias + '/echo', {}) .then(response => { this.dicomNodes[alias]['status'] = 'ok'; this.$forceUpdate();