You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Thu, Aug 5, 2021 at 1:28 PM gssjl2008 ***@***.***> wrote:
I use it to check whether NFS is writable, I do not see NFS close the connection
You mean in wireshark? You do not see a CLOSE in wireshark?
NFS is a stateless protocol. There is no close() function in NFS.
So when the application calls f.close() this is basically a no-op when
it comes to the NFS protocol.
nfs = libnfs.NFS("nfs://{server}{path}".format(server=nfs_server, path=nfs_path))
f = nfs.open("/test_nfs_rw.file", "w")
f.write(str(time.time()))
f.close()
Have you closed the connection?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
I use it to check whether NFS is writable, I do not see NFS close the connection
Have you closed the connection?
The text was updated successfully, but these errors were encountered: