We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It happens with the word tls from [the 'tls] in the open method.
tls
This is roughly the character of the problem, though it's with PORT! not object:
port: make object! [ state: make object! [ connection: ~ ] ] scheme: make object! [ actor: make object! [ open: func [ port [object!] <local> conn ][ port.state.connection: conn: compose [ scheme: ( either false [the 'tcp][the 'tls] ) ] ] ] ] scheme.actor.open port
The problem has been seen in READ of https://example.com, during the PERFORM-READ stacklevel
https://example.com
LABEL: <eval> @ FILE: ~anonymous~ @ LINE: 3477 LABEL: perform-read @ FILE: ~anonymous~ @ LINE: 3372 LABEL: <eval> @ FILE: ~anonymous~ @ LINE: 3372 LABEL: do-commands @ FILE: ~anonymous~ @ LINE: 3661 LABEL: <eval> @ FILE: ~anonymous~ @ LINE: 3661 LABEL: <anonymous> @ FILE: ~anonymous~ @ LINE: 4296 LABEL: connect @ FILE: ~anonymous~ @ LINE: 4296 LABEL: <eval> @ FILE: ~anonymous~ @ LINE: 4296 LABEL: <anonymous> @ FILE: ~anonymous~ @ LINE: 0 LABEL: open @ FILE: ~anonymous~ @ LINE: 0 LABEL: <eval> @ FILE: ~anonymous~ @ LINE: 0 LABEL: else @ FILE: ~anonymous~ @ LINE: 4232 LABEL: <eval> @ FILE: ~anonymous~ @ LINE: 4232 LABEL: <anonymous> @ FILE: /C/Projects/ren-c/tests/network/http.test.reb @ LINE: 18 LABEL: read @ FILE: /C/Projects/ren-c/tests/network/http.test.reb @ LINE: 18
Putting this information here to keep track of it in case future instances are seen.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It happens with the word
tls
from [the 'tls] in the open method.This is roughly the character of the problem, though it's with PORT! not object:
The problem has been seen in READ of
https://example.com
, during the PERFORM-READ stacklevelPutting this information here to keep track of it in case future instances are seen.
The text was updated successfully, but these errors were encountered: