forked from lobo/lambda-zig
fix bug introduced when moving to built in client
This commit is contained in:
parent
2c8eb248f8
commit
f26b735a55
|
@ -60,7 +60,7 @@ pub fn run(allocator: ?std.mem.Allocator, event_handler: HandlerFn) !void { // T
|
||||||
|
|
||||||
var request_id: ?[]const u8 = null;
|
var request_id: ?[]const u8 = null;
|
||||||
var content_length: ?usize = null;
|
var content_length: ?usize = null;
|
||||||
for (req.headers.list.items) |h| {
|
for (req.response.headers.list.items) |h| {
|
||||||
if (std.ascii.eqlIgnoreCase(h.name, "Lambda-Runtime-Aws-Request-Id"))
|
if (std.ascii.eqlIgnoreCase(h.name, "Lambda-Runtime-Aws-Request-Id"))
|
||||||
request_id = h.value;
|
request_id = h.value;
|
||||||
if (std.ascii.eqlIgnoreCase(h.name, "Content-Length")) {
|
if (std.ascii.eqlIgnoreCase(h.name, "Content-Length")) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user