WIP: Resolve json rpc #57
Labels
No labels
consider soon
documentation
good first issue
hacktoberfest
help wanted
priority: blocker
priority: high
priority: low
priority: medium
type: bug
type: discussion
type: improvement
type: new feature
type: refactor
type: task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: LBRYCommunity/herald.go#57
Loading…
Reference in a new issue
No description provided.
Delete branch "resolve-json-rpc"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +13,4 @@
requests==2.28.1
six==1.16.0
uritemplate==4.1.1
urllib3==1.26.11
Is this needed by scripts/version.py? Did it get created inadvertently?
JSON port number should be a new thing in args.go, defaulting to 50001.
Then pass the args struct (or json parts of it) into StartJsonRPC111().
Where does this port number come from? I would expect to see 8080 (or 50001)
Also does this need "/rpc" to match line 45 of jsonrpc_service.go?
I haven't been able to determine whether (Python) herald uses "/rpc" or any other path(s).
@ -0,0 +13,4 @@
requests==2.28.1
six==1.16.0
uritemplate==4.1.1
urllib3==1.26.11
Yes, this is needed by the version.py, it was intentional.
Yup, I just added that. It's already carried in through the Server struct.
This is an old script added in by mistake, I'll move and change it.