-
Hey there, We've rotated our keys and now getting this error:
Please note, we add our models only through the config file. Is there a way to fix this issue? Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Anyone have any thoughts on this, i am facing it too. |
Beta Was this translation helpful? Give feedback.
-
Hey @Mosquid there's probably other encrypted values in your DB, leading to this - e.g. ConfigTable Did you follow the guide for rotating master keys? https://docs.litellm.ai/docs/proxy/master_key_rotations |
Beta Was this translation helpful? Give feedback.
-
I landed here after I had the same error. In my scenario, I had previously spun up docker compose to test litellm with different salt and master key then did Next I spun up again with different config and got the above error. I found that docker compose uses volumes that doesn't get destroyed and there were some DB entries encrypted with past master key and salt. Had to delete it using |
Beta Was this translation helpful? Give feedback.
I landed here after I had the same error.
In my scenario, I had previously spun up docker compose to test litellm with different salt and master key then did
docker compose down
assuming it will destroy everything.Next I spun up again with different config and got the above error. I found that docker compose uses volumes that doesn't get destroyed and there were some DB entries encrypted with past master key and salt. Had to delete it using
docker compose down --volumes --remove-orphans
and thendocker compose up
. This fixed my issue.