| 178 | } |
| 179 | |
| 180 | void InitOss() { |
| 181 | if (aos_http_io_initialize(NULL, 0) != AOSE_OK) { |
| 182 | LOG(FATAL) << "Init oss env failed."; |
| 183 | } |
| 184 | |
| 185 | aos_pool_create(&pool_, NULL); |
| 186 | oss_client_options_ = oss_request_options_create(pool_); |
| 187 | InitOptions(oss_client_options_); |
| 188 | } |
| 189 | |
| 190 | void PrintDebugString() { |
| 191 | LOG(INFO) << "tracing_: " << tracing_ |
nothing calls this directly
no test coverage detected