[Partner Nodes] feat(client): send ComfyUI Job Id in request headers (#14934)
This commit is contained in:
parent
cc6b352511
commit
87d23b8176
|
|
@ -15,6 +15,7 @@ from comfy.comfy_api_env import normalize_comfy_api_base
|
||||||
from comfy.deploy_environment import get_deploy_environment
|
from comfy.deploy_environment import get_deploy_environment
|
||||||
from comfy.model_management import processing_interrupted
|
from comfy.model_management import processing_interrupted
|
||||||
from comfy_api.latest import IO
|
from comfy_api.latest import IO
|
||||||
|
from comfy_execution.utils import get_executing_context
|
||||||
from comfyui_version import __version__ as comfyui_version
|
from comfyui_version import __version__ as comfyui_version
|
||||||
|
|
||||||
from .common_exceptions import ProcessingInterrupted
|
from .common_exceptions import ProcessingInterrupted
|
||||||
|
|
@ -57,12 +58,16 @@ def get_comfy_api_headers(node_cls: type[IO.ComfyNode]) -> dict[str, str]:
|
||||||
relative/cloud URLs resolved against ``default_base_url()``; because the result
|
relative/cloud URLs resolved against ``default_base_url()``; because the result
|
||||||
includes auth, callers must not attach it to arbitrary absolute/presigned URLs.
|
includes auth, callers must not attach it to arbitrary absolute/presigned URLs.
|
||||||
"""
|
"""
|
||||||
return {
|
headers = {
|
||||||
**get_auth_header(node_cls),
|
**get_auth_header(node_cls),
|
||||||
"Comfy-Env": get_deploy_environment(),
|
"Comfy-Env": get_deploy_environment(),
|
||||||
"Comfy-Usage-Source": get_usage_source(node_cls),
|
"Comfy-Usage-Source": get_usage_source(node_cls),
|
||||||
"Comfy-Core-Version": comfyui_version,
|
"Comfy-Core-Version": comfyui_version,
|
||||||
}
|
}
|
||||||
|
ctx = get_executing_context()
|
||||||
|
if ctx is not None:
|
||||||
|
headers["Comfy-Job-Id"] = ctx.prompt_id
|
||||||
|
return headers
|
||||||
|
|
||||||
|
|
||||||
def default_base_url() -> str:
|
def default_base_url() -> str:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue