-
Notifications
You must be signed in to change notification settings - Fork 1k
stop getPlatformProxy crashing with internal DOs #8697
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
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
4b2f4d6
pass name to getplatformproxy
emily-shen e3b5485
fixup
emily-shen 1ad6c6b
remove out of date warning
emily-shen e8580ed
stop gpp crashing with internal DOs
emily-shen 77c92fa
changeset
emily-shen 8be466f
fix e2e
emily-shen 8992703
pr feedback
emily-shen e96f022
elaborate on error message
emily-shen ed51d04
move to a docs link
emily-shen e5ff82f
fix failing test
CarmenPopoviciu d32ae37
copy improvement
CarmenPopoviciu a7e4149
update docs link
emily-shen c5a973d
update link
emily-shen e9636eb
Merge branch 'main' into emily/DO
CarmenPopoviciu 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 hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| --- | ||
| "wrangler": patch | ||
| --- | ||
|
|
||
| fix: stop getPlatformProxy crashing when internal DOs are present | ||
|
|
||
| Internal DOs still do not work with getPlatformProxy, but warn instead of crashing. |
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| { | ||
| "name": "external-do", | ||
| "main": "src/index.ts", | ||
| // external durable object = binding has script_name. This indicates that | ||
| // the DO is exported in a separate Worker called `do-worker`. For the | ||
| // purposes of testing, we don't need to set that up because | ||
| // getPlatformProxy would not be involved in running that Worker. | ||
|
|
||
| "durable_objects": { | ||
| "bindings": [ | ||
| { | ||
| "class_name": "MyDurableObject", | ||
| "name": "MY_DURABLE_OBJECT", | ||
| "script_name": "do-worker", | ||
| }, | ||
| ], | ||
| }, | ||
| "migrations": [ | ||
| { | ||
| "new_sqlite_classes": ["MyDurableObject"], | ||
| "tag": "v1", | ||
| }, | ||
| ], | ||
| } |
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| { | ||
| "name": "internal-do", | ||
| "main": "src/index.ts", | ||
| // Internal durable object = the binding does not specify a script name. | ||
| // This implies the DO is exported alongside this worker in `index.ts`, | ||
| // which it isn't actually. However we don't care about this here because | ||
| // getPlatformProxy will discard all user code anyway. We are simply making | ||
| // sure the warning shows up. | ||
| "durable_objects": { | ||
| "bindings": [ | ||
| { | ||
| "class_name": "MyDurableObject", | ||
| "name": "MY_DURABLE_OBJECT", | ||
| }, | ||
| ], | ||
| }, | ||
| "migrations": [ | ||
| { | ||
| "new_sqlite_classes": ["MyDurableObject"], | ||
| "tag": "v1", | ||
| }, | ||
| ], | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.