hiredis-vip-0.3.0.zip编译修正

This commit is contained in:
zhangchengwei
2018-12-15 21:19:20 +08:00
committed by zhengchao
parent a70aa35a3a
commit c801523de9
4 changed files with 4 additions and 4 deletions

View File

@@ -104,9 +104,9 @@ int object_store_head_object(struct object_store_instance *instance, struct futu
return cache_evbase_head_object(instance->instances[rand()%instance->instance_num], f, meta);
}
int object_store_delete_object(struct object_store_instance *instance, struct future* f, const char *objkey)
int object_store_delete_object(struct object_store_instance *instance, struct future* f, const char *objkey, const char *minio_addr, const char *bucket)
{
return cache_evbase_delete_object(instance->instances[rand()%instance->instance_num], f, objkey);
return cache_evbase_delete_object(instance->instances[rand()%instance->instance_num], f, objkey, minio_addr, bucket);
}
struct object_store_instance *object_store_instance_new(const char* profile_path, const char* section, int thread_num, void *runtimelog)