修复读取app state时的笔误。

This commit is contained in:
zhengchao
2019-07-26 14:21:51 +06:00
committed by luwenpeng
parent 63bcc591a7
commit 5a62fcacf7

View File

@@ -301,7 +301,7 @@ static long app_st_write_cb(void * data, const uchar * key, uint size, void * us
{ {
app_st=ALLOC(struct ssl_svc_app_st, 1); app_st=ALLOC(struct ssl_svc_app_st, 1);
app_st->ref_svc_cache=cache; app_st->ref_svc_cache=cache;
ret = MESA_htable_add(cache->srv_st_hash, key, size, app_st); ret = MESA_htable_add(cache->app_st_hash, key, size, app_st);
assert(ret >= 0); assert(ret >= 0);
} }
if(status->is_app_not_pinning) if(status->is_app_not_pinning)