You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks to @hansieodendaal for reporting: The tari_base_node creates a stack overflow error when run in Windows. This has been traced to the implementation of multiple Tokio layers in pub fn inbound_middleware_layer. Excluding the 2x store_forward Tokio layers works for now. It seems this problem is related to the amount of layers added as well.
The tokio::runtime::Builder::new().thread_stack_size has been increased from 2MB to 200MB but this did not solve the problem.
sdbondi
changed the title
Stack overflow issue with windows on DHT inbound message pipeline
Stack overflow issue on windows when spawning DHT inbound message pipeline
Mar 5, 2020
Thanks to @hansieodendaal for reporting: The
tari_base_node
creates a stack overflow error when run in Windows. This has been traced to the implementation of multiple Tokio layers inpub fn inbound_middleware_layer
. Excluding the 2xstore_forward
Tokio layers works for now. It seems this problem is related to the amount of layers added as well.The
tokio::runtime::Builder::new().thread_stack_size
has been increased from 2MB to 200MB but this did not solve the problem.More context #1414
The text was updated successfully, but these errors were encountered: