diff options
author | Adam Chlipala <adam@chlipala.net> | 2015-10-17 11:08:12 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2015-10-17 11:08:12 -0400 |
commit | a05e87cadacd4f81c3150fdf92b8acf7141d150e (patch) | |
tree | d13cc9dbdc42b42664249cf31d3ec095820e9ea8 /include | |
parent | 2d198c091036767fdad1c3cd79f1bba4664682ea (diff) |
Switching to a more dynamic method of handling database reconnection, restarting transactions
Diffstat (limited to 'include')
-rw-r--r-- | include/urweb/urweb_cpp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/urweb/urweb_cpp.h b/include/urweb/urweb_cpp.h index b1d2048e..a371d8e8 100644 --- a/include/urweb/urweb_cpp.h +++ b/include/urweb/urweb_cpp.h @@ -40,7 +40,7 @@ uw_loggers* uw_get_loggers(struct uw_context *ctx); uw_loggers* uw_get_loggers(struct uw_context *ctx); failure_kind uw_begin(struct uw_context *, char *path); void uw_ensure_transaction(struct uw_context *); -int uw_try_reconnecting_if_at_most_one(struct uw_context *); +void uw_try_reconnecting_and_restarting(struct uw_context *); failure_kind uw_begin_onError(struct uw_context *, char *msg); void uw_login(struct uw_context *); int uw_commit(struct uw_context *); |