forked from stateful/vscode-runme
-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
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
serialize & deserialize from connect server #2
Open
hotpocket
wants to merge
35
commits into
main
Choose a base branch
from
v1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
57cd768
initial stab at ts connect server
hotpocket d103974
use schemas from buf registry instead of locally generated ones
hotpocket 2eaed62
remove unnecessary cas4ts
hotpocket 88d34d7
readme with working examples
hotpocket a3017f7
simplify: remove unused server code
hotpocket c7a1fae
a better description
hotpocket a8f668a
remove unnecessary tsconfig
hotpocket e40a98e
remove leftover proto gen config
hotpocket 29f6779
connect serializer v0 implementation
hotpocket 6b641df
seems correct. may not be.
hotpocket 1f45b63
added questions section to address unknowns.
hotpocket 6e09283
3.9.3-edge.2
ffe3fff
Merge branch 'stateful:main' into v1
hotpocket 65133fe
test server being called from ConnectSerializer.
hotpocket 4e2819f
Merge branch 'stateful:main' into v1
hotpocket 4129af5
deserialize now using test server
hotpocket 6da075b
verify address is not empty
hotpocket 5a272d1
Merge branch 'main' into v1
hotpocket f3b977a
wrong port#
hotpocket 6dbf112
refactor transport and catch connect errors
hotpocket 020d20f
attempt to connect using a grpc transport. tried with and without ce…
hotpocket 07c4b94
actually attempt to use the grpcTransport and correct address.
hotpocket 5c05076
sort out how to connect using tls and start the server with the prope…
hotpocket 4105664
Merge branch 'main' into v1
hotpocket a0b2645
ca is not needed for successful connection.
hotpocket ba89a69
more detail on recent tls issue.
hotpocket d3362e5
committing this prior to Grpc feature extractions
hotpocket 9a413c9
beginning of refactor of tyhpe specific functionality.
hotpocket 1a00cdb
replace marshal functionality in Connect and Grpc serializers.
hotpocket e8a29f3
using a manually started server for now - subject to change.
hotpocket 7c96341
commit to save state before refactor of caching components of grpcSer…
hotpocket c3f1cdc
move caching into base class so ConnectSerializer gets it too.
hotpocket 58ab0ba
need to fix the error about a missing toBinary method then this will …
hotpocket 28270d5
attempting to track down frontmatter property not having toBinary fun…
hotpocket 44c42f9
explicitly cast proto.frontmatter so it will have necessary serilizat…
hotpocket File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
playing with abstraction via composition. referenced here to compliment prior comments made