Show More
@@ -54,12 +54,12 b' class SimpleSvnApp(object):' | |||||
54 | request_headers = self._get_request_headers(environ) |
|
54 | request_headers = self._get_request_headers(environ) | |
55 | data_io = environ['wsgi.input'] |
|
55 | data_io = environ['wsgi.input'] | |
56 | req_method: str = environ['REQUEST_METHOD'] |
|
56 | req_method: str = environ['REQUEST_METHOD'] | |
57 | has_content_length = 'CONTENT_LENGTH' in environ |
|
57 | has_content_length: bool = 'CONTENT_LENGTH' in environ | |
58 |
|
58 | |||
59 | path_info = self._get_url( |
|
59 | path_info = self._get_url( | |
60 | self.config.get('subversion_http_server_url', ''), get_path_info(environ)) |
|
60 | self.config.get('subversion_http_server_url', ''), get_path_info(environ)) | |
61 | transfer_encoding = environ.get('HTTP_TRANSFER_ENCODING', '') |
|
61 | transfer_encoding = environ.get('HTTP_TRANSFER_ENCODING', '') | |
62 | log.debug('Handling: %s method via `%s`', req_method, path_info) |
|
62 | log.debug('Handling: %s method via `%s` has_content_length:%s', req_method, path_info, has_content_length) | |
63 |
|
63 | |||
64 | # stream control flag, based on request and content type... |
|
64 | # stream control flag, based on request and content type... | |
65 | stream = False |
|
65 | stream = False |
General Comments 0
You need to be logged in to leave comments.
Login now