Closed fcolecumberri closed 7 months ago
Update: I think this only happens with Img2Img workflows.
Thanks for the report. Does https://github.com/shiimizu/ComfyUI_smZNodes/commit/a4804c6f3b66314c7c0b1cea0c17f0b291d38d50 fix it?
No, the error is still there.
Do you have a workflow I can test?
Let me make a simpler workflow that can reproduce the error (Also, here it's 1am so I'll make it tomorrow), thanks a lot.
Here, this is a simple workflow I could made to replicate the error.
Also if I go back in time with bash:
MASTER=$(git remote show origin | sed -n '/HEAD branch/s/.*: //p')
git checkout "$MASTER@{2024-04-04 18:30:00}"
for GITDIR in $(ls -d custom_nodes/*/)
do
pushd $GITDIR
if [ $(git rev-parse --show-toplevel) == $(pwd) ]
then
MASTER=$(git remote show origin | sed -n '/HEAD branch/s/.*: //p')
git checkout "$MASTER@{2024-04-04 18:30:00}"
if [ -f requirements.txt ]
then
pip3 install --require-virtualenv -r requirements.txt &
fi
fi
popd
done
Everything works fine.
Thanks for the workflow. Though, things still worked fine on my end. Does the latest commit (https://github.com/shiimizu/ComfyUI_smZNodes/commit/378ed4567f3290823d5dc5e9556c7d742dc82d23) fix it?
Yes, Thanks a LOT!!
For some reason now I get
RecursionError
, my (resumed) log is:I have been trying to checkout to previous commits, however for some reason it throws other errors (wich I think are related to some change on comfy).