trivial: Fix variable name

This is a path, not a request. See the parent class, Putter, and
all the callers of MIMEPutter.connect().

Related-Change: I12a6e41150f90de746ce03623032b83ed1987ee1
Change-Id: I42c7dcf2b4a3bf8bd023fdc1ce7d454ce01885a0
This commit is contained in:
Tim Burke 2024-10-07 11:36:49 -07:00
parent 44653d8efb
commit cfc7f99d43

View File

@ -1861,10 +1861,10 @@ class MIMEPutter(Putter):
An HTTP PUT request that supports streaming.
"""
def __init__(self, conn, node, resp, req, connect_duration, watchdog,
def __init__(self, conn, node, resp, path, connect_duration, watchdog,
write_timeout, send_exception_handler, logger, mime_boundary,
multiphase=False):
super(MIMEPutter, self).__init__(conn, node, resp, req,
super(MIMEPutter, self).__init__(conn, node, resp, path,
connect_duration, watchdog,
write_timeout, send_exception_handler,
logger)
@ -1946,7 +1946,7 @@ class MIMEPutter(Putter):
self.state = COMMIT_SENT
@classmethod
def connect(cls, node, part, req, headers, watchdog, conn_timeout,
def connect(cls, node, part, path, headers, watchdog, conn_timeout,
node_timeout, write_timeout, send_exception_handler,
logger=None, need_multiphase=True, **kwargs):
"""
@ -1985,7 +1985,7 @@ class MIMEPutter(Putter):
headers['X-Backend-Obj-Multiphase-Commit'] = 'yes'
conn, expect_resp, final_resp, connect_duration = cls._make_connection(
node, part, req, headers, conn_timeout, node_timeout)
node, part, path, headers, conn_timeout, node_timeout)
if is_informational(expect_resp.status):
continue_headers = HeaderKeyDict(expect_resp.getheaders())
@ -2000,7 +2000,7 @@ class MIMEPutter(Putter):
if need_multiphase and not can_handle_multiphase_put:
raise MultiphasePUTNotSupported()
return cls(conn, node, final_resp, req, connect_duration, watchdog,
return cls(conn, node, final_resp, path, connect_duration, watchdog,
write_timeout, send_exception_handler, logger,
mime_boundary, multiphase=need_multiphase)