A performs Windows Azure Blob Service uploads to of PostgreSQL WAL files and clusters
| 5 | |
| 6 | |
| 7 | class WABSBackup(Backup): |
| 8 | """ |
| 9 | A performs Windows Azure Blob Service uploads to of PostgreSQL WAL files |
| 10 | and clusters |
| 11 | |
| 12 | """ |
| 13 | def __init__(self, layout, creds, gpg_key_id): |
| 14 | super(WABSBackup, self).__init__(layout, creds, gpg_key_id) |
| 15 | url_tup = urlparse(layout.prefix) |
| 16 | container_name = url_tup.netloc |
| 17 | self.cinfo = wabs.calling_format.from_store_name(container_name) |
| 18 | from wal_e.worker.wabs import wabs_worker |
| 19 | self.worker = wabs_worker |
no outgoing calls
no test coverage detected