Skip to content

Commit

Permalink
Remove set_no_delay which was deprecated a long time ago. (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
floitsch authored Mar 15, 2024
1 parent 0f141e0 commit 4b9c2e4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
os: [ ubuntu-latest, windows-latest, macos-latest ]
# The versions should contain (at least) the lowest requirement
# and a version that is more up to date.
toit-version: [ v2.0.0-alpha.79, latest ]
toit-version: [ v2.0.0-alpha.143, latest ]
include:
- toit-version: v2.0.0-alpha.79
- toit-version: v2.0.0-alpha.143
version-name: old
- toit-version: latest
version-name: new
Expand Down
3 changes: 1 addition & 2 deletions package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@
name: http
description: An HTTP server and client.
environment:
# alpha 79 added session resume in TLS.
sdk: ^2.0.0-alpha.79
sdk: ^2.0.0-alpha.143
4 changes: 0 additions & 4 deletions src/connection.toit
Original file line number Diff line number Diff line change
Expand Up @@ -361,10 +361,6 @@ class DetachedSocket_ implements tcp.Socket:
close -> none:
socket_.close

// TODO(kasper): Remove this. Here for backwards compatibility.
set_no_delay enabled/bool:
no_delay = enabled

in:
throw "UNIMPLEMENTED"

Expand Down

0 comments on commit 4b9c2e4

Please sign in to comment.