diff options
Diffstat (limited to 'src/ca/scaiis.cpp')
-rw-r--r-- | src/ca/scaiis.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ca/scaiis.cpp b/src/ca/scaiis.cpp index a29af1db..958051ed 100644 --- a/src/ca/scaiis.cpp +++ b/src/ca/scaiis.cpp | |||
@@ -12,13 +12,13 @@ HRESULT ScaMetabaseTransaction(__in_z LPCWSTR wzBackup) | |||
12 | 12 | ||
13 | // TODO: These functions have been reported to hang IIS (O11:51709). They may have been fixed in IIS6, but if not, need to be re-written the hard way | 13 | // TODO: These functions have been reported to hang IIS (O11:51709). They may have been fixed in IIS6, but if not, need to be re-written the hard way |
14 | 14 | ||
15 | hr = WcaDoDeferredAction(L"StartMetabaseTransaction", wzBackup, COST_IIS_TRANSACTIONS); | 15 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"StartMetabaseTransaction"), wzBackup, COST_IIS_TRANSACTIONS); |
16 | ExitOnFailure(hr, "Failed to schedule StartMetabaseTransaction"); | 16 | ExitOnFailure(hr, "Failed to schedule StartMetabaseTransaction"); |
17 | 17 | ||
18 | hr = WcaDoDeferredAction(L"RollbackMetabaseTransaction", wzBackup, 0); // rollback cost is irrelevant | 18 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"RollbackMetabaseTransaction"), wzBackup, 0); // rollback cost is irrelevant |
19 | ExitOnFailure(hr, "Failed to schedule RollbackMetabaseTransaction"); | 19 | ExitOnFailure(hr, "Failed to schedule RollbackMetabaseTransaction"); |
20 | 20 | ||
21 | hr = WcaDoDeferredAction(L"CommitMetabaseTransaction", wzBackup, 0); // commit is free | 21 | hr = WcaDoDeferredAction(CUSTOM_ACTION_DECORATION(L"CommitMetabaseTransaction"), wzBackup, 0); // commit is free |
22 | ExitOnFailure(hr, "Failed to schedule StartMetabaseTransaction"); | 22 | ExitOnFailure(hr, "Failed to schedule StartMetabaseTransaction"); |
23 | 23 | ||
24 | LExit: | 24 | LExit: |