From c1948bf94ee057bc63a3ae10a8269391c3f30b0e Mon Sep 17 00:00:00 2001 From: Chris Galvan Date: Wed, 20 Oct 2021 15:04:21 -0500 Subject: [PATCH] Treat invalid p4 configuration as a warning for the scene settings save action so the processing popup will get the job results. Signed-off-by: Chris Galvan --- .../Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp index 0b514513ca..d05074c483 100644 --- a/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp +++ b/Code/Editor/Plugins/EditorCommon/SaveUtilities/AsyncSaveRunner.cpp @@ -76,6 +76,7 @@ namespace AZ else if (info.m_status == AzToolsFramework::SourceControlStatus::SCS_ProviderIsDown) { message = "Failed to put entries/dependencies into source control as the provider is not available.\n"; + reportAsWarning = true; } else if (info.m_status == AzToolsFramework::SourceControlStatus::SCS_CertificateInvalid) {