Skip to content

Commit

Permalink
fix: initialize concurrent dictionary
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusbooyah committed Apr 4, 2024
1 parent 0b5c43a commit 0e1b339
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ jobs:
uses: svenstaro/upload-release-action@v2
if: "!github.event.release.prerelease"
with:
file: binary_release.zip
repo_token: ${{ secrets.RELEASES_TOKEN }}
tag: ${{ github.ref }}
body: ${{ steps.git-cliff.outputs.content }}
Expand All @@ -75,7 +74,6 @@ jobs:
uses: svenstaro/upload-release-action@v2
if: "github.event.release.prerelease"
with:
file: binary_release.zip
repo_token: ${{ secrets.RELEASES_TOKEN }}
tag: ${{ github.ref }}
body: ${{ steps.git-cliff-prerelease.outputs.content }}
1 change: 1 addition & 0 deletions src/Neon.Operator/ResourceManager/ResourceManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ public async Task StartAsync(CancellationToken cancellationToken = default)
this.crdCache = serviceProvider.GetRequiredService<ICrdCache>();
this.finalizerManager = serviceProvider.GetRequiredService<IFinalizerManager<TEntity>>();
this.lockProvider = serviceProvider.GetRequiredService<AsyncKeyedLocker<string>>();
this.reconcileTokens = new ConcurrentDictionary<string, CancellationTokenSource>();

IResourceController<TEntity> controller;

Expand Down

0 comments on commit 0e1b339

Please sign in to comment.