Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
344f3ab7
Unverified
Commit
344f3ab7
authored
May 13, 2021
by
Jonah Williams
Committed by
GitHub
May 13, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[flutter_tools] swap web debugging protocol to ws (#82456)
parent
3266f4d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
flutter_command.dart
packages/flutter_tools/lib/src/runner/flutter_command.dart
+3
-3
run_test.dart
.../flutter_tools/test/commands.shard/hermetic/run_test.dart
+14
-0
No files found.
packages/flutter_tools/lib/src/runner/flutter_command.dart
View file @
344f3ab7
...
...
@@ -211,7 +211,7 @@ abstract class FlutterCommand extends Command<void> {
);
argParser
.
addOption
(
'web-server-debug-protocol'
,
allowed:
<
String
>[
'sse'
,
'ws'
],
defaultsTo:
'
sse
'
,
defaultsTo:
'
ws
'
,
help:
'The protocol (SSE or WebSockets) to use for the debug service proxy '
'when using the Web Server device and Dart Debug extension. '
'This is useful for editors/debug adapters that do not support debugging '
...
...
@@ -220,7 +220,7 @@ abstract class FlutterCommand extends Command<void> {
);
argParser
.
addOption
(
'web-server-debug-backend-protocol'
,
allowed:
<
String
>[
'sse'
,
'ws'
],
defaultsTo:
'
sse
'
,
defaultsTo:
'
ws
'
,
help:
'The protocol (SSE or WebSockets) to use for the Dart Debug Extension '
'backend service when using the Web Server device. '
'Using WebSockets can improve performance but may fail when connecting through '
...
...
@@ -229,7 +229,7 @@ abstract class FlutterCommand extends Command<void> {
);
argParser
.
addOption
(
'web-server-debug-injected-client-protocol'
,
allowed:
<
String
>[
'sse'
,
'ws'
],
defaultsTo:
'
sse
'
,
defaultsTo:
'
ws
'
,
help:
'The protocol (SSE or WebSockets) to use for the injected client '
'when using the Web Server device. '
'Using WebSockets can improve performance but may fail when connecting through '
...
...
packages/flutter_tools/test/commands.shard/hermetic/run_test.dart
View file @
344f3ab7
...
...
@@ -508,6 +508,20 @@ void main() {
'--bundle-sksl-path=foo.json'
,
]),
throwsToolExit
(
message:
'No SkSL shader bundle found at foo.json'
));
});
testUsingContext
(
'Configures web connection options to use web sockets by default'
,
()
async
{
final
RunCommand
command
=
RunCommand
();
await
expectLater
(()
=>
createTestCommandRunner
(
command
).
run
(<
String
>[
'run'
,
'--no-pub'
,
]),
throwsToolExit
());
final
DebuggingOptions
options
=
await
command
.
createDebuggingOptions
(
true
);
expect
(
options
.
webUseSseForDebugBackend
,
false
);
expect
(
options
.
webUseSseForDebugProxy
,
false
);
expect
(
options
.
webUseSseForInjectedClient
,
false
);
});
}
class
MockCache
extends
Mock
implements
Cache
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment