Skip to content

Commit c7d7140

Browse files
committed
Add missing TruffleBoundary
1 parent 964babd commit c7d7140

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/ssl/SSLSocketBuiltins.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -413,6 +413,7 @@ Object get(PSSLSocket socket) {
413413
@GenerateNodeFactory
414414
abstract static class SelectedAlpnProtocol extends PythonUnaryBuiltinNode {
415415
@Specialization
416+
@TruffleBoundary
416417
static Object get(PSSLSocket socket) {
417418
String protocol = socket.getEngine().getApplicationProtocol();
418419
return protocol != null && !protocol.isEmpty() ? protocol : PNone.NONE;

0 commit comments

Comments
 (0)