From 9ef70d2ae7b6a5da5619b9f23f1fb99c5162e079 Mon Sep 17 00:00:00 2001 From: Gene Walters Date: Wed, 20 Oct 2021 16:38:39 -0700 Subject: [PATCH] Debugging why Jenkins is failing. Changing a harmless assert to a warning to check if this allows server launcher to run on Jenkins machine. Not sure why this would work, just grabbing at straws Signed-off-by: Gene Walters --- Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp | 2 +- .../ly_remote_console/remote_console_commands.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp index b2b67c3b75..ad15abd2b7 100644 --- a/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp +++ b/Code/Legacy/CrySystem/LevelSystem/SpawnableLevelSystem.cpp @@ -152,7 +152,7 @@ namespace LegacyLevelSystem // [LYN-2376] Remove once legacy slice support is removed int SpawnableLevelSystem::GetLevelCount() { - AZ_Assert(false, "GetLevelCount - No longer supported."); + AZ_Warning("SpawnableLevelSystem", false, "GetLevelCount - No longer supported."); return 0; } diff --git a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py index 559823c820..31ec6663fb 100755 --- a/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py +++ b/Tools/RemoteConsole/ly_remote_console/ly_remote_console/remote_console_commands.py @@ -228,7 +228,7 @@ class RemoteConsole: def expect_log_line(self, match_string, timeout=30): # type: (str, int) -> bool """ - Looks for a log line event to expect within a time frame. Returns False is timeout is reached. + Looks for a log line event to expect within a time frame. Returns False if timeout is reached. :param match_string: The string to match that acts as a key :param timeout: The timeout to wait for the log line in seconds :return: boolean True if match_string found, False otherwise.