From a17dd09a92a4f2a3f702bd28a97e6d4b55be3898 Mon Sep 17 00:00:00 2001 From: bsrdjan Date: Mon, 24 Jul 2023 11:25:09 +0200 Subject: [PATCH] fix(client): server_log removed from client free() method --- README.md | 4 ++-- src/pyrfc/_cyrfc.pyx | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8a1583e..ec03937 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ Asynchronous, non-blocking [SAP NetWeawer RFC SDK](https://support.sap.com/en/pr - [Features](#features) - [Supported platforms](#supported-platforms) - [Requirements](#requirements) - - [SAP NW RFC SDK 7.50.11](#sap-nw-rfc-sdk-75011) + - [SAP NW RFC SDK 7.50 Patch Level 12](#sap-nw-rfc-sdk-750-patch-level-12) - [Docker](#docker) - [Windows](#windows) - [macOS](#macos) @@ -52,7 +52,7 @@ Asynchronous, non-blocking [SAP NetWeawer RFC SDK](https://support.sap.com/en/pr ## Requirements -### SAP NW RFC SDK 7.50.11 +### SAP NW RFC SDK 7.50 Patch Level 12 - see [SAP Note 3274546](https://launchpad.support.sap.com/#/notes/3274546) for a list of bug fixes and enhancements made with this patch release - Using the latest version is recommended as SAP NWRFC SDK is fully backwards compatible, from today S4, down to R/3 release 4.6C. diff --git a/src/pyrfc/_cyrfc.pyx b/src/pyrfc/_cyrfc.pyx index cbc7224..b3c3b28 100755 --- a/src/pyrfc/_cyrfc.pyx +++ b/src/pyrfc/_cyrfc.pyx @@ -628,7 +628,6 @@ cdef class Connection: can be delayed by the garbage collection and problems may occur when too many connections are opened. """ - _server_log("Connection", f"{self.handle} free") self._close() if self._connection is not None: self._connection._free()