This commit is contained in:
aozhiwei 2020-06-17 09:50:21 +08:00
parent 03a5524715
commit b02b699a90

View File

@ -10,20 +10,22 @@ void JsonDataMgr::Init()
std::string masterserver_cluster_json_file; std::string masterserver_cluster_json_file;
if (!f8::IsOnlineEnv()) { if (!f8::IsOnlineEnv()) {
if (f8::IsTestEnv()) { if (f8::IsTestEnv()) {
work_path_ = a8::Format("/root/pub/%d/%d/conf_test/friend/masterserver.test", work_path_ = a8::Format("/root/pub/%d/%d/conf_test/game%d/masterserver.test",
{ {
GAME_ID, GAME_ID,
App::Instance()->instance_id, App::Instance()->instance_id,
GAME_ID
}); });
} else { } else {
work_path_ = a8::Format("/root/pub/%d/%d/conf_test/friend/masterserver.dev", work_path_ = a8::Format("/root/pub/%d/%d/conf_test/game%d/masterserver.dev",
{ {
GAME_ID, GAME_ID,
App::Instance()->instance_id, App::Instance()->instance_id,
GAME_ID
}); });
} }
} }
masterserver_cluster_json_file = a8::Format("%s/friend_masterserver.cluster.json", masterserver_cluster_json_file = a8::Format("%s/node1/game9003.masterserver.cluster.json",
{ {
work_path_, work_path_,
}); });