Skip to content

Commit

Permalink
Workspace: Disable incremental sends in homefs
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnorNelson committed Oct 31, 2024
1 parent bc052a8 commit 8b14755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homefs/volume_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def get_volume(volume):
if request.headers.get("If-None-Match") == snapshot_path.name:
return Response(status=304, headers={"ETag": snapshot_path.name})

stream = volume.send(snapshot_path, incremental_from=request.headers.get("If-None-Match"))
stream = volume.send(snapshot_path)
return Response(stream, mimetype="application/octet-stream", headers={"ETag": snapshot_path.name})


Expand Down

0 comments on commit 8b14755

Please sign in to comment.