Skip to content

Commit 04f49f3

Browse files
authored
Merge pull request #23 from PandaTechAM/development
fix sqllite path
2 parents be9c02f + 7604911 commit 04f49f3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
- name: Pack PostgresOutbox
3838
run: dotnet pack src/MassTransit.PostgresOutbox/MassTransit.PostgresOutbox.csproj --no-build --configuration Release --output ${{ env.OUTPUT_DIR }}
3939

40-
- name: Pack SqliteOutbox
41-
run: dotnet pack src/MassTransit.SqliteOutbox/MassTransit.SqliteOutbox.csproj --no-build --configuration Release --output ${{ env.OUTPUT_DIR }}
40+
- name: Pack SQLiteOutbox
41+
run: dotnet pack src/MassTransit.SQLiteOutbox/MassTransit.SQLiteOutbox.csproj --no-build --configuration Release --output ${{ env.OUTPUT_DIR }}
4242

4343
- name: Publish packages
4444
env:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ architectures.
1010
| Package | Provider | Concurrency strategy |
1111
|----------------------------------------|------------|-----------------------------|
1212
| `Pandatech.MassTransit.PostgresOutbox` | PostgreSQL | `FOR UPDATE SKIP LOCKED` |
13-
| `Pandatech.MassTransit.SqliteOutbox` | SQLite | Lease-based (`LeasedUntil`) |
13+
| `Pandatech.MassTransit.SQLiteOutbox` | SQLite | Lease-based (`LeasedUntil`) |
1414

1515
Both packages are **wire-compatible** — a service using PostgreSQL for its outbox can publish to a service using SQLite
1616
for its inbox, and vice versa.

0 commit comments

Comments
 (0)