| 407 | } |
| 408 | |
| 409 | void |
| 410 | ProxyDatabase::Open() |
| 411 | { |
| 412 | update_stamp = std::chrono::system_clock::time_point::min(); |
| 413 | |
| 414 | try { |
| 415 | Connect(); |
| 416 | } catch (...) { |
| 417 | /* this error is non-fatal, because this plugin will |
| 418 | attempt to reconnect again automatically */ |
| 419 | LogError(std::current_exception()); |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | void |
| 424 | ProxyDatabase::Close() noexcept |