We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6247036 commit 769187dCopy full SHA for 769187d
src/docker-images/azure-blob-adapter/wsgi.py
@@ -77,8 +77,8 @@ def application(request):
77
continue
78
else:
79
# P2 or P3: point to the last one and retry
80
- blob = max(blobs, key=lambda blob: blob.properties.last_modified)
81
- blob_name = blob.name
+ latest_blob = max(blobs, key=lambda blob: blob.properties.last_modified)
+ blob_name = latest_blob.name
82
83
84
# P4: make it [Full, ..., Full, ->New<-]
0 commit comments