Skip to content

Commit

Permalink
apply the lower transform on delete
Browse files Browse the repository at this point in the history
  • Loading branch information
BitK committed Oct 28, 2021
1 parent 8f4522b commit b1fb634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dockers/manager/back/app/api/traefik.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ async def create_from_object(client, obj, prefix=""):
async def delete_pattern(client, pattern):
async with client.pipeline(transaction=True) as pipe:
for key in await client.keys(pattern):
pipe = pipe.delete(key)
pipe = pipe.delete(key.lower())
await pipe.execute()


Expand Down

0 comments on commit b1fb634

Please sign in to comment.