Skip to content

Commit

Permalink
fix errors caused during the rename
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuSanal committed Oct 25, 2024
1 parent 42c4af5 commit 1428458
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion robyn/processpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ def spawn_process(

server.apply_response_headers(response_headers)

server.set_response_headers_exclude_paths(excluded_response_header_paths)
server.set_response_headers_exclude_paths(excluded_response_headers_paths)

for route in routes:
route_type, endpoint, function, is_const = route
Expand Down
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ impl Server {
let startup_handler = self.startup_handler.clone();
let shutdown_handler = self.shutdown_handler.clone();

let excluded_response_header_paths = self.excluded_response_header_paths.clone();
let excluded_response_headers_paths = self.excluded_response_headers_paths.clone();

let task_locals = pyo3_asyncio::TaskLocals::new(event_loop).copy_context(py)?;
let task_locals_copy = task_locals.clone();
Expand Down

0 comments on commit 1428458

Please sign in to comment.