Skip to content

Commit

Permalink
fix: made the schema configuration value scoped to hangfire section
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Oct 25, 2022
1 parent 96d0ea9 commit d4dac2e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/.releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins:
- - "@semantic-release/github"
- assets:
- path: ../../artifacts/EAVFW.Extensions.WorkflowEngine.*.nupkg
label: Parser DLL
label: Binaries

- - "@semantic-release/exec"
- publishCmd: "dotnet nuget push ..\\..\\artifacts\\EAVFW.Extensions.WorkflowEngine.*.nupkg --source https://nuget.pkg.github.com/eavfw/index.json --api-key ${process.env.GITHUB_TOKEN}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ private static void SetupConnection(IGlobalConfiguration globalConfiguration, IC
QueuePollInterval = TimeSpan.Zero,
UseRecommendedIsolationLevel = true,
DisableGlobalLocks = true,
SchemaName = configuration.GetValue<string>("DBSchema") ?? "hangfire",
SchemaName = configuration.GetValue<string>("Hangfire:DBSchema") ?? "hangfire",

};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="EAVFramework" Version="2.0.0" />
<PackageReference Include="EAVFramework" Version="2.1.0" />
<PackageReference Include="Delegate.WorkflowEngine.Hangfire" Version="3.0.0-dev.12" />
<PackageReference Include="EAVFW.Extensions.Documents" Version="2.0.0" />
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.31" />
Expand Down

0 comments on commit d4dac2e

Please sign in to comment.