From 1b69c11426360fae06fe73a00abc8a52fb53393b Mon Sep 17 00:00:00 2001
From: afederici <ajf5@illinois.edu>
Date: Sun, 29 Nov 2020 20:05:20 -0600
Subject: [PATCH] fault taulerance 3 bug fix

---
 src/Node.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/Node.cpp b/src/Node.cpp
index e5bace6..2e64910 100644
--- a/src/Node.cpp
+++ b/src/Node.cpp
@@ -1049,7 +1049,8 @@ void Node::handleTcpMessage()
 				cout << "[MAPLE] Leader starting new Maple phase" << endl;
 				if (inMsg.size() < 4) break;
 				mapleKeys.clear();
-				string exe = inMsg[0], num_maples = inMsg[1], sdfs_dir = inMsg[3] + "-", s = "";
+				exe = inMsg[0]
+				string num_maples = inMsg[1], sdfs_dir = inMsg[3] + "-", s = "";
 				sdfsPre = inMsg[2] + "-";
 				isMaplePhase = true;
 				isJuicePhase = false;
-- 
GitLab