We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c60d1b4 commit baea4a4Copy full SHA for baea4a4
webapp/main.py
@@ -185,14 +185,6 @@ async def api_flow_get(request):
185
async def api_flow_raw_get(request):
186
flow_id = request.path_params["flow_id"]
187
188
- # Query flow from database to get proto
189
- cursor = await eve_database.execute(
190
- "SELECT proto FROM flow WHERE id = ?", [flow_id]
191
- )
192
- flow = await cursor.fetchone()
193
- if not flow:
194
- raise HTTPException(404)
195
-
196
# Get associated raw data
197
cursor = await payload_database.execute(
198
"SELECT server_to_client, blob FROM raw WHERE flow_id = ?1 ORDER BY count",
0 commit comments