Skip to content

Commit 8263780

Browse files
committed
Push a status_code argument onto our rest helpers; provide some default codes for several error cases
1 parent a93d5c1 commit 8263780

File tree

5 files changed

+102
-79
lines changed

5 files changed

+102
-79
lines changed

synapse/axon.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ async def _setSha256Headers(self, sha256b):
138138

139139
self.blobsize = await self.getAxon().size(sha256b)
140140
if self.blobsize is None:
141-
self.set_status(404)
142-
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {s_common.ehex(sha256b)}')
141+
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {s_common.ehex(sha256b)}', status_code=404)
143142
return False
144143

145144
status = 200
@@ -260,8 +259,7 @@ async def delete(self, sha256):
260259

261260
sha256b = s_common.uhex(sha256)
262261
if not await self.getAxon().has(sha256b):
263-
self.set_status(404)
264-
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {sha256}')
262+
self.sendRestErr('NoSuchFile', f'SHA-256 not found: {sha256}', status_code=404)
265263
return
266264

267265
resp = await self.getAxon().del_(sha256b)

0 commit comments

Comments
 (0)