"docs/source/ko/using-diffusers/schedulers.mdx" did not exist on "ab986769f1a6401bd1d0a1faf17e85dc67c2e8c4"
Commit b0505eb7 authored by comfyanonymous's avatar comfyanonymous
Browse files

Return right type when none specified in upload route.

Switch time.time to time.perf_counter for custom node import times.
parent db4d3a84
......@@ -1338,9 +1338,9 @@ def load_custom_nodes():
for possible_module in possible_modules:
module_path = os.path.join(custom_node_path, possible_module)
if os.path.isfile(module_path) and os.path.splitext(module_path)[1] != ".py": continue
time_before = time.time()
time_before = time.perf_counter()
success = load_custom_node(module_path)
node_import_times.append((time.time() - time_before, module_path, success))
node_import_times.append((time.perf_counter() - time_before, module_path, success))
if len(node_import_times) > 0:
print("\nImport times for custom nodes:")
......
......@@ -115,22 +115,23 @@ class PromptServer():
def get_dir_by_type(dir_type):
if dir_type is None:
type_dir = folder_paths.get_input_directory()
elif dir_type == "input":
dir_type = "input"
if dir_type == "input":
type_dir = folder_paths.get_input_directory()
elif dir_type == "temp":
type_dir = folder_paths.get_temp_directory()
elif dir_type == "output":
type_dir = folder_paths.get_output_directory()
return type_dir
return type_dir, dir_type
def image_upload(post, image_save_function=None):
image = post.get("image")
overwrite = post.get("overwrite")
image_upload_type = post.get("type")
upload_dir = get_dir_by_type(image_upload_type)
upload_dir, image_upload_type = get_dir_by_type(image_upload_type)
if image and image.file:
filename = image.filename
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment