Skip to content

Commit

Permalink
Rename upgrade to upgrade_protocol
Browse files Browse the repository at this point in the history
  • Loading branch information
sacovo authored Apr 2, 2024
1 parent dde272f commit 2ae18a0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .release-notes/78.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Rename upgrade to upgrade_protocol

To allow changing the TCP handler of a running HTTP connection, `Session` specifies a method `upgrade_protocol`, which should be implemented by the concrete classes. The implementation used by the actual HTTP server had an implementation for this feature, but the method was called `upgrade`. As `Session` provides a default implementation for `upgrade_protocol`, this wasn't caught. By renaming the implementation it's now possible to use the new feature to change the handler to a custom handler to handle for example WebSocket connections.
2 changes: 1 addition & 1 deletion http_server/_server_connection.pony
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,6 @@ actor _ServerConnection is (Session & HTTP11RequestHandler)
dispose()
end

be upgrade(notify: TCPConnectionNotify iso) =>
be upgrade_protocol(notify: TCPConnectionNotify iso) =>
_conn.set_notify(consume notify)

0 comments on commit 2ae18a0

Please sign in to comment.