Skip to content

Commit 11a85d5

Browse files
committed
NCBC-3840: Rider IDE :nq is not a valid format specifier
Motivation ---------- On the ClusterOptions class, the "{DebuggerDisplay:nq}" debugger display expression fails on Rider IDE with: `:nq` is not a valid format specifier The syntax should be: `:nq` is not a valid format specifier "{DebuggerDisplay,nq}" Reference link on the Jira ticket. Change-Id: I0f471d09e3844cca8a9f74c7311837741354bb95 Reviewed-on: https://review.couchbase.org/c/couchbase-net-client/+/217799 Tested-by: Build Bot <[email protected]> Reviewed-by: Richard Ponton <[email protected]>
1 parent 60f03a1 commit 11a85d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Couchbase/Query/QueryOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace Couchbase.Query
2727
/// <summary>
2828
/// Options to control execution of a N1QL query.
2929
/// </summary>
30-
[DebuggerDisplay($"{{{nameof(DebuggerDisplay)}:nq}}")]
30+
[DebuggerDisplay($"{{{nameof(DebuggerDisplay)},nq}}")]
3131
public class QueryOptions
3232
{
3333
private const string GetFormValuesAsJsonUnreferencedCodeMessage =

0 commit comments

Comments
 (0)