mirror of
https://github.com/vlang/v.git
synced 2025-09-18 03:46:36 -04:00
vweb: fix typo in vweb.v (#19513)
This commit is contained in:
parent
e87d743b0a
commit
13c9006667
@ -1107,10 +1107,10 @@ fn new_worker[T](ch chan &RequestParams, id int) thread {
|
|||||||
id: id
|
id: id
|
||||||
ch: ch
|
ch: ch
|
||||||
}
|
}
|
||||||
return spawn w.process_incomming_requests[T]()
|
return spawn w.process_incoming_requests[T]()
|
||||||
}
|
}
|
||||||
|
|
||||||
fn (mut w Worker[T]) process_incomming_requests() {
|
fn (mut w Worker[T]) process_incoming_requests() {
|
||||||
sid := '[vweb] tid: ${w.id:03d} received request'
|
sid := '[vweb] tid: ${w.id:03d} received request'
|
||||||
for {
|
for {
|
||||||
mut params := <-w.ch or { break }
|
mut params := <-w.ch or { break }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user