Community
Participate
Working Groups
The ProvisioningContext method isEnabled(IRepositoryManager manager, IRepositoryReference reference) will always consider the referenced repository enabled regardless of its status. The test is for (status | 1) == 1 and that will always yield true.
Created attachment 167619 [details] Patch that fixes the condition This patch changes the test to (status & 1) == 1 instead of (status | 1) == 1
Susan, I have reviewed and released, but I would appreciate if you could give an second look at this.
yikes. Thanks for catching that.