rancher / convoy

A Docker volume plugin, managing persistent container volumes.
Apache License 2.0
1.31k stars 135 forks source link

Convoy can't check if volume exists #235

Open JohnBoyB opened 3 years ago

JohnBoyB commented 3 years ago

Hello everyone,

We had a power failure on our servers last night and since then I have noticed some strange behaviour on convoy. A service could not be started and received the following error message:

create volume_name: Error occurred while checking if volume volume_name exists: EOF So I tried to delete the volume, but got the following error:

Error deleting volume_name: Error response from server, Volume not found.

ERRO[0000] Error response from server, Volume not found.

{
    "Error": "Error response from server, Volume not found.\n"
}

If I now want to create a new volume manually, I get the following message:

ERRO[0000] Error response from server, Error occurred while checking if volume volume_name exists: EOF

{
    "Error": "Error response from server, Error occurred while checking if volume volume_name exists: EOF\n"
}

If I now change the volume name in my docker-compose from volume_name to e.g. volume_name_new, everything works fine. Unfortunately I don't know what to do :(