Skip to content

Commit 769187d

Browse files
committed
Fix
1 parent 6247036 commit 769187d

File tree

1 file changed

+2
-2
lines changed
  • src/docker-images/azure-blob-adapter

1 file changed

+2
-2
lines changed

src/docker-images/azure-blob-adapter/wsgi.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ def application(request):
7777
continue
7878
else:
7979
# 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
80+
latest_blob = max(blobs, key=lambda blob: blob.properties.last_modified)
81+
blob_name = latest_blob.name
8282
continue
8383
else:
8484
# P4: make it [Full, ..., Full, ->New<-]

0 commit comments

Comments
 (0)