MCPcopy Create free account
hub / github.com/wal-e/wal-e / WABSBackup

Class WABSBackup

wal_e/operator/wabs_operator.py:7–19  ·  view source on GitHub ↗

A performs Windows Azure Blob Service uploads to of PostgreSQL WAL files and clusters

Source from the content-addressed store, hash-verified

5
6
7class 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

Callers 1

configure_backup_cxtFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected