We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17e9dcb commit 830be61Copy full SHA for 830be61
Commands/Get-WebSocket.ps1
@@ -131,7 +131,7 @@ function Get-WebSocket {
131
132
# The buffer size. Defaults to 16kb.
133
[int]
134
- $BufferSize = 16kb,
+ $BufferSize = 64kb,
135
136
# The ScriptBlock to run after connection to a websocket.
137
# This can be useful for making any initial requests.
@@ -244,7 +244,7 @@ function Get-WebSocket {
244
}
245
246
if (-not $BufferSize) {
247
- $BufferSize = 16kb
+ $BufferSize = 64kb
248
249
250
$CT = [Threading.CancellationToken]::None
0 commit comments