Skip to content

Commit

Permalink
Merge pull request #51 from argon-chat/fix/fix-ci-pipeline
Browse files Browse the repository at this point in the history
CI pipeline fix
  • Loading branch information
0xF6 authored Nov 16, 2024
2 parents bdffb77 + 2ca50c3 commit 8a8d4f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on:
push:
branches: [ "master" ]
paths:
- 'src/**/**
- 'src/**/**'
pull_request:
branches: [ "master" ]
paths:
- 'src/**/**
- 'src/**/**'
workflow_dispatch:

jobs:
Expand Down
2 changes: 0 additions & 2 deletions src/Argon.Api/Grains/TestGrain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ public class StreamProducerGrain : Grain, IStreamProducerGrain
[Obsolete("Obsolete")]
public Task Produce()
{
// Pick a GUID for a chat room grain and chat room stream
var guid = Guid.Parse("d97e7fb1-e2f6-4803-b66c-965bc5d1d099");
var streamProvider = this.GetStreamProvider(IArgonEvent.ProviderId);
var streamId = StreamId.Create(IArgonEvent.Namespace, guid);
Expand All @@ -67,7 +66,6 @@ public Task Produce()
#endregion
}

[ImplicitStreamSubscription("@")]
public class StreamConsumerGrain(ILogger<StreamConsumerGrain> logger) : Grain, IStreamConsumerGrain
{
#region Implementation of IStreamConsumerGrain
Expand Down

0 comments on commit 8a8d4f2

Please sign in to comment.