On Mon, Jun 27, 2016 at 10:13 AM <[email protected]> wrote:

> I've come across a problem and I don't know if it's a bug or not. I'm
> using wal-e version 0.9.1.
>
> So my latest seems to be on the 27th of June but when I do a backup fetch
> LATEST, it starts restoring the tar partitions for 
> base_0000000200000A1700000051_00000040
> which the command above shows as Jun 15th. So the question is why is it not
> restoring the version for the 27th, but restoring the version from the 15th?
>
>
> My storage is azure blob storage.
>
That's strange. The two code paths (for listing and finding LATEST) are the
same. Here is the code in base.py:

        elif query == 'LATEST':
            all_backups = list(iter(self))

            if not all_backups:
                return

            assert len(all_backups) > 0

            all_backups.sort(key=lambda bi: bi.last_modified)
            yield all_backups[-1]

Perhaps you can instrument the code to see if anything strange is going on
there?

-- 
You received this message because you are subscribed to the Google Groups 
"wal-e" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to