NickCraver / StackExchange.Exceptional

Error handler used for the Stack Exchange network
https://nickcraver.com/StackExchange.Exceptional/
Apache License 2.0
863 stars 171 forks source link

Error not found #71

Closed mmillican closed 8 years ago

mmillican commented 8 years ago

Using the following configuration (same as other apps), Opserver is saying "Error not found" when you hover over it or click on it. 2016-04-ct54z

<system.webServer>
....
    <modules runAllManagedModulesForAllRequests="true">
        <add name="ErrorLog" type="StackExchange.Exceptional.ExceptionalModule,               StackExchange.Exceptional" />
 </modules>
....
</system.webServer>

<Exceptional applicationName="Sales Portal">
    <LogFilters>
        <Form>
            <add name="password" replaceWith="******" />
            <add name="__RequestVerificationToken" replaceWith="******" />
        </Form>
        <Cookies>
            <add name="Marcus" replaceWith="******" />
        </Cookies>
    </LogFilters>
    <ErrorStore type="SQL" connectionStringName="LoggingDb" />
</Exceptional>

I've had this issue with one other app, but the issue seems to have resolved itself. Any ideas?

NickCraver commented 8 years ago

Have you tried the overhaul branch? The caching semantics are drastically improved on some race situations. If this is consistently reproducible, what does your Opserver config look like?

mmillican commented 8 years ago

@NickCraver I have not yet. I can try that this weekend.

Would it matter at all that the ones I noticed recently are from my local machine and not a server? I wouldn't think so, but curious. I don't remember if this was the case before or not.

mmillican commented 8 years ago

@NickCraver Looks like deploying the opserver/overhaul branch did the trick, for now at least. I'll let you know if I see otherwise.

PS - Overhaul looks awesome!