Skip to content

Commit

Permalink
fix issue
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyKrupskiy committed Feb 11, 2021
1 parent 873e3c2 commit 8f8f6e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ static OnHttpRequestBegin()
catch (Exception ex)
{
_logger.LogError(ex);
if (ex is Sitecore.XConnect.XdbCollectionUnavailableException && ExmContext.IsRenderRequest)
throw;
}
}
}
Expand Down
4 changes: 4 additions & 0 deletions src/Sitecore.Support.461807/Sitecore.Support.461807.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@
<HintPath>..\packages\SC.Sitecore.Kernel.9.0.2\lib\Sitecore.Kernel.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Sitecore.XConnect, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\SC.Sitecore.XConnect.9.0.2\lib\Sitecore.XConnect.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
Expand Down
1 change: 1 addition & 0 deletions src/Sitecore.Support.461807/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
<package id="SC.Sitecore.EmailCampaign.Model.Web" version="9.0.2" targetFramework="net462" />
<package id="SC.Sitecore.ExM.Framework" version="9.0.2" targetFramework="net462" />
<package id="SC.Sitecore.Kernel" version="9.0.2" targetFramework="net462" />
<package id="SC.Sitecore.XConnect" version="9.0.2" targetFramework="net462" />
</packages>

0 comments on commit 8f8f6e9

Please sign in to comment.