bug fix: Remove strict ping check for remote backups [AWS]

This commit is contained in:
Usman Nasir
2019-09-11 15:07:10 +05:00
parent ca6c733d7c
commit c5978941e4
2 changed files with 2 additions and 2 deletions

View File

@@ -90,9 +90,8 @@ class remoteTransferUtilities:
pass
else:
writeToFile.writelines("[" + time.strftime(
"%I-%M-%S-%a-%b-%Y") + "]" + " Host:" + ipAddress + " is down, aborting. [5010]" + "\n")
"%I-%M-%S-%a-%b-%Y") + "]" + " Host:" + ipAddress + " could be down, we are continuing..." + "\n")
writeToFile.close()
return
writeToFile.close()

View File

@@ -261,6 +261,7 @@ class virtualHostUtilities:
if retValues[0] == 0:
print "0," + str(retValues[1])
logging.CyberCPLogFileWriter.writeToFile(str(retValues[1]))
return 0, str(retValues[1])
installUtilities.installUtilities.reStartLiteSpeed()