Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerhut committed Apr 17, 2020
1 parent 6247036 commit 769187d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/docker-images/azure-blob-adapter/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def application(request):
continue
else:
# P2 or P3: point to the last one and retry
blob = max(blobs, key=lambda blob: blob.properties.last_modified)
blob_name = blob.name
latest_blob = max(blobs, key=lambda blob: blob.properties.last_modified)
blob_name = latest_blob.name
continue
else:
# P4: make it [Full, ..., Full, ->New<-]
Expand Down

0 comments on commit 769187d

Please sign in to comment.