Skip to content

Commit 42aee1f

Browse files
authored
Merge branch 'main' into use-node-24
2 parents 4bea975 + b0d01e9 commit 42aee1f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

tools/projmgr/src/ProjMgrRpcServer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ RpcArgs::DiscoverLayersInfo RpcHandler::DiscoverLayers(const string& solution, c
836836
StrVec layers;
837837
StrSet fails;
838838
if(!m_worker.ListLayers(layers, "", fails) || !m_worker.ElaborateVariablesConfigurations()) {
839-
result.message = "No compatible software layer found. Review required connections of the project";
839+
result.message = "No compatible software layer was found in the installed packs.\nInstall additional packs containing suitable layers before restarting the 'Create Solution' flow.";
840840
return result;
841841
} else {
842842
// retrieve valid configurations

tools/projmgr/test/src/ProjMgrRpcTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1498,7 +1498,7 @@ TEST_F(ProjMgrRpcTests, RpcDiscoverLayers) {
14981498
json({{ "solution", csolutionPath }, { "activeTarget", "" }}));
14991499
responses = RunRpcMethods(requests);
15001500
EXPECT_FALSE(responses[0]["result"]["success"]);
1501-
EXPECT_EQ(responses[0]["result"]["message"], "No compatible software layer found. Review required connections of the project");
1501+
EXPECT_EQ(responses[0]["result"]["message"], "No compatible software layer was found in the installed packs.\nInstall additional packs containing suitable layers before restarting the 'Create Solution' flow.");
15021502
}
15031503

15041504
TEST_F(ProjMgrRpcTests, RpcListMissingPacks) {

0 commit comments

Comments
 (0)