File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
tests/NRedisStack.Tests/Examples Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -91,6 +91,8 @@ public async Task AsyncExample(string endpointId)
9191 [ MemberData ( nameof ( EndpointsFixture . Env . AllEnvironments ) , MemberType = typeof ( EndpointsFixture . Env ) ) ]
9292 public void PipelineExample ( string endpointId )
9393 {
94+ Skip . If ( true , "FIXME: JsonSet is not executed in pipeline, see https://github.com/redis/NRedisStack/issues/379" ) ;
95+
9496 // Pipeline can get IDatabase for pipeline
9597 IDatabase db = GetCleanDatabase ( endpointId ) ;
9698 var pipeline = new Pipeline ( db ) ;
@@ -110,12 +112,9 @@ public void PipelineExample(string endpointId)
110112
111113 // Get the Json response
112114 var getResponse = pipeline . Json . GetAsync ( "person" ) ;
113-
115+
114116 // Execute the pipeline
115117 pipeline . Execute ( ) ;
116-
117- // Wait for the pipeline operations to complete
118- Task . Delay ( 100 ) . Wait ( ) ;
119118
120119 // Get the result back JSON
121120 var result = getResponse . Result ;
You can’t perform that action at this time.
0 commit comments