Skip to content

Commit

Permalink
fix(CouchDB): Database endpoint must be set.
Browse files Browse the repository at this point in the history
Got mixed up during refactoring.
Signed-off-by: 陳鈞 <[email protected]>
  • Loading branch information
jim60105 committed Apr 25, 2024
1 parent 5fefbbc commit 4a140f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CouchDB/CouchDBContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public CouchDBContext()
{
}

public CouchDBContext(CouchOptions options) : base(options)
// ReSharper disable once SuggestBaseTypeForParameterInConstructor
public CouchDBContext(CouchOptions<CouchDBContext> options) : base(options)
{
}

Expand Down

0 comments on commit 4a140f0

Please sign in to comment.