Skip to content

Commit

Permalink
remove testing config settings
Browse files Browse the repository at this point in the history
  • Loading branch information
karlseguin committed Dec 7, 2023
1 parent b9fc8a0 commit 43b6f35
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions example/simple.zig
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ var index_file_contents: []u8 = undefined;
// Started in main.zig which starts 3 servers, on 3 different ports, to showcase
// small variations in using httpz.
pub fn start(allocator: Allocator) !void {
var server = try httpz.Server().init(allocator, .{
.timeout = .{.request_count = 3},
});
var server = try httpz.Server().init(allocator, .{});
defer server.deinit();
var router = server.router();

Expand Down

0 comments on commit 43b6f35

Please sign in to comment.