File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ struct TTxCoordinator::TTxConfigure : public TTransactionBase<TTxCoordinator> {
123
123
if (ConfigurationApplied) {
124
124
Self->Execute (Self->CreateTxInit (), ctx);
125
125
} else {
126
- Self->SetCounter (COUNTER_MISSING_CONFIG, Self->Config .HaveProcessingParams ? 1 : 0 );
126
+ Self->SetCounter (COUNTER_MISSING_CONFIG, Self->Config .HaveProcessingParams ? 0 : 1 );
127
127
if (Self->Config .HaveProcessingParams ) {
128
128
Self->SubscribeToSiblings ();
129
129
}
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ struct TTxCoordinator::TTxInit : public TTransactionBase<TTxCoordinator> {
124
124
Self->Config .Resolution = PlanResolution;
125
125
Self->Config .ReducedResolution = ReducedResolution;
126
126
Self->Config .HaveProcessingParams = HaveProcessingParams;
127
- Self->SetCounter (COUNTER_MISSING_CONFIG, HaveProcessingParams ? 1 : 0 );
127
+ Self->SetCounter (COUNTER_MISSING_CONFIG, HaveProcessingParams ? 0 : 1 );
128
128
129
129
if (LastBlockedActor && LastPlanned < LastBlockedStep) {
130
130
Self->RestoreState (LastBlockedActor, LastBlockedStep);
You can’t perform that action at this time.
0 commit comments