Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion API/Routes/Case/CaseRoute.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def initSyncS3():
#downoload param file from S3 bucket
syncS3.downloadSync('Parameters.json', Config.DATA_STORAGE, Config.S3_BUCKET)
response = {
"message": "Cases syncronized with S3 bucket!",
"message": "Cases synchronized with S3 bucket!",
"status_code": "success"
}
return jsonify(response), 200
Expand Down
2 changes: 1 addition & 1 deletion API/Routes/Case/SyncS3Route.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def uploadSync():
s3.uploadSync(localDir, case, Config.S3_BUCKET, '*')

response = {
"message": 'Case <b>'+ case + '</b> syncronized!',
"message": 'Case <b>'+ case + '</b> synchronized!',
"status_code": "success"
}
return jsonify(response), 200
Expand Down
Loading