File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
tests/NRedisStack.Tests/Examples Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ public async Task AsyncExample(string endpointId)
9292 public void PipelineExample ( string endpointId )
9393 {
9494 Skip . If ( true , "FIXME: JsonSet is not executed in pipeline, see https://github.com/redis/NRedisStack/issues/379" ) ;
95-
95+
9696 // Pipeline can get IDatabase for pipeline
9797 IDatabase db = GetCleanDatabase ( endpointId ) ;
9898 var pipeline = new Pipeline ( db ) ;
@@ -112,10 +112,10 @@ public void PipelineExample(string endpointId)
112112
113113 // Get the Json response
114114 var getResponse = pipeline . Json . GetAsync ( "person" ) ;
115-
115+
116116 // Execute the pipeline
117117 pipeline . Execute ( ) ;
118-
118+
119119 // Get the result back JSON
120120 var result = getResponse . Result ;
121121
You can’t perform that action at this time.
0 commit comments