Fix NLSR termination due to key does not exist error
refs: #3869
Change-Id: I12927eeef02f0311112fae02a1c885389947dde5
diff --git a/ndn/nlsr.py b/ndn/nlsr.py
index da68f76..6033b38 100644
--- a/ndn/nlsr.py
+++ b/ndn/nlsr.py
@@ -46,7 +46,7 @@
node.cmd("sudo sed -i 's|prefix .*netlab|prefix /ndn/edu/%s|g' %s" % (node.name, self.confFile))
def start(self):
- NdnApplication.start(self, "nlsr -d -f {} &".format(self.confFile))
+ NdnApplication.start(self, "nlsr -d -f {}".format(self.confFile))
@staticmethod
def createKey(host, name, outputFile):