Skip to content

Commit 280fbb9

Browse files
authored
CE-577 Couchbase 1.30 >> Ingestion from multiple full backups >> Virtual pre-snapshot failing (#63)
CE-577 Couchbase 1.30 >> Ingestion from multiple full backups >> Pre-snapshot failing PR URL: https://www.github.com/delphix/couchbase-plugin/pull/63
1 parent 38047a3 commit 280fbb9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/controller/couchbase_operation.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,7 +910,10 @@ def save_config(self, what, nodeno=1):
910910
),
911911
trgname=chronicle_target_dir,
912912
)
913-
if self.parameters.d_source_type == constants.CBBKPMGR:
913+
if (
914+
hasattr(self.parameters, "d_source_type")
915+
and self.parameters.d_source_type == constants.CBBKPMGR
916+
):
914917
self.run_os_command(
915918
os_command="write_file",
916919
filename=os.path.join(

0 commit comments

Comments
 (0)