Merge pull request #4313 from AllenX2018/fix-issue-4312
fix issue #4312
This commit is contained in:
		
						commit
						05d8e293f7
					
				
							
								
								
									
										4
									
								
								client/cache/ssdb/ssdb.go
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								client/cache/ssdb/ssdb.go
									
									
									
									
										vendored
									
									
								
							| @ -28,14 +28,14 @@ func NewSsdbCache() cache.Cache { | ||||
| func (rc *Cache) Get(ctx context.Context, key string) (interface{}, error) { | ||||
| 	if rc.conn == nil { | ||||
| 		if err := rc.connectInit(); err != nil { | ||||
| 			return nil, nil | ||||
| 			return nil, err | ||||
| 		} | ||||
| 	} | ||||
| 	value, err := rc.conn.Get(key) | ||||
| 	if err == nil { | ||||
| 		return value, nil | ||||
| 	} | ||||
| 	return nil, nil | ||||
| 	return nil, err | ||||
| } | ||||
| 
 | ||||
| // GetMulti gets one or keys values from ssdb. | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user