1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Don't compress http response by default.

Remove argument to disable it.

Add new --enable-compress-response-body argument to enable it.
This commit is contained in:
comfyanonymous
2025-02-07 03:29:12 -05:00
parent b6951768c4
commit 079eccc92a
2 changed files with 5 additions and 4 deletions

View File

@@ -179,7 +179,7 @@ parser.add_argument(
parser.add_argument("--user-directory", type=is_valid_directory, default=None, help="Set the ComfyUI user directory with an absolute path. Overrides --base-directory.")
parser.add_argument("--disable-compres-response-body", action="store_true", help="Disable compressing response body.")
parser.add_argument("--enable-compress-response-body", action="store_true", help="Enable compressing response body.")
if comfy.options.args_parsing:
args = parser.parse_args()