From 49c2d0c5fb216909cf3101629558c99092895e6d Mon Sep 17 00:00:00 2001 From: tangwei12 Date: Tue, 19 Jun 2018 16:30:02 +0800 Subject: [PATCH] bug fix --- paddle/fluid/operators/detail/request_handler_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paddle/fluid/operators/detail/request_handler_impl.h b/paddle/fluid/operators/detail/request_handler_impl.h index b7cebf1a6..689c6893c 100644 --- a/paddle/fluid/operators/detail/request_handler_impl.h +++ b/paddle/fluid/operators/detail/request_handler_impl.h @@ -70,7 +70,7 @@ class RequestCheckpointHandler final : public RequestHandler { public: explicit RequestCheckpointHandler(bool sync_mode, int checkpoint_notify_id) : RequestHandler(sync_mode) { - this.checkpoint_notify_id = checkpoint_notify_id; + this->checkpoint_notify_id = checkpoint_notify_id; } virtual ~RequestCheckpointHandler() {} bool Handle(const std::string& varname, framework::Scope* scope, -- GitLab