Skip to content

Commit

Permalink
We actually need to remember the ctor values
Browse files Browse the repository at this point in the history
  • Loading branch information
ayende committed Oct 5, 2011
1 parent 2598b79 commit 8f2c531
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Raven.Storage.Esent/Backup/BackupOperation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ public BackupOperation(DocumentDatabase database, string src, string to)
{
instance = ((TransactionalStorage)database.TransactionalStorage).Instance;
this.database = database;
this.src = src;
this.to = to;
}

public void Execute(object ignored)
Expand Down
2 changes: 2 additions & 0 deletions Raven.Storage.Managed/Backup/BackupOperation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ public BackupOperation(DocumentDatabase database, IPersistentSource persistentSo
{
this.database = database;
this.persistentSource = persistentSource;
this.src = src;
this.to = to;
}

public void Execute(object ignored)
Expand Down

0 comments on commit 8f2c531

Please sign in to comment.