Skip to content

Commit

Permalink
fix: naming incorrect about stow
Browse files Browse the repository at this point in the history
- uploader is using STOW, not WADO
- rename file that actually using STOW
  • Loading branch information
Chinlinlee committed May 4, 2023
1 parent f027d0b commit aa8b074
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
/plugins/config.js

/local/local-upload-log.json
/local/local-upload-wado-log.json
/local/local-upload-stow-log.json

/config/raccoon-dimse-app.json
6 changes: 3 additions & 3 deletions config/raccoon-dimse-app.example.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
},
"raccoon": {
"dicomStoreRoot": "./",
"raccoonUploadScriptPath": "local/dicom-uploader-wado.js",
"mode": "WADO",
"wadoUrl": "http://127.0.0.1:8081/dicom-web/studies"
"raccoonUploadScriptPath": "local/dicom-uploader-stow.js",
"mode": "STOW",
"stowUrl": "http://127.0.0.1:8081/dicom-web/studies"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ async function storeFromDir(dir) {
}
}

fs.writeFileSync(path.join(__dirname, "local-upload-wado-log.json"), JSON.stringify({
fs.writeFileSync(path.join(__dirname, "local-upload-stow-log.json"), JSON.stringify({
successFiles,
errorFiles
}, null, 4));
Expand Down
Binary file not shown.

0 comments on commit aa8b074

Please sign in to comment.