msg: fix typo
This commit is contained in:
parent
ac1b62459c
commit
0da979c2b5
@ -45,15 +45,15 @@ class MpExperienceMsg(MpExperience):
|
|||||||
MpExperienceMsg.SERVER_LOG)
|
MpExperienceMsg.SERVER_LOG)
|
||||||
|
|
||||||
def getMsgServerCmd(self):
|
def getMsgServerCmd(self):
|
||||||
s = "python3 " + os.path.dirname(os.path.abspath(__file__)) + \
|
s = "python " + os.path.dirname(os.path.abspath(__file__)) + \
|
||||||
"/msg_server.py --sleep " + self.server_sleep + " &>" + MpExperienceMsg.SERVER_LOG + "&"
|
"/msg_server.py --sleep " + self.server_sleep + " &>" + MpExperienceMsg.SERVER_LOG + "&"
|
||||||
print(s)
|
print(s)
|
||||||
return s
|
return s
|
||||||
|
|
||||||
def getMsgClientCmd(self):
|
def getMsgClientCmd(self):
|
||||||
s = "python3 " + os.path.dirname(os.path.abspath(__file__)) + \
|
s = "python " + os.path.dirname(os.path.abspath(__file__)) + \
|
||||||
"/msg_client.py --sleep " + self.client_sleep + " --nb " + self.nb_requests + \
|
"/msg_client.py --sleep " + self.client_sleep + " --nb " + self.nb_requests + \
|
||||||
" >" + MpExperienceMsg.CLIENT_LOG + " 2>" + MpExperienceSiriMsg.CLIENT_ERR + "&"
|
" >" + MpExperienceMsg.CLIENT_LOG + " 2>" + MpExperienceMsg.CLIENT_ERR
|
||||||
print(s)
|
print(s)
|
||||||
return s
|
return s
|
||||||
|
|
||||||
|
@ -69,4 +69,4 @@ finally:
|
|||||||
print("Closing connection")
|
print("Closing connection")
|
||||||
sock.close()
|
sock.close()
|
||||||
for delay in delays:
|
for delay in delays:
|
||||||
print(delay)
|
print(delay.total_seconds())
|
||||||
|
Loading…
Reference in New Issue
Block a user