Skip to content

Commit

Permalink
Fix message
Browse files Browse the repository at this point in the history
  • Loading branch information
ardatan committed Nov 7, 2024
1 parent c365684 commit 866f1f6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/legacy/migrate-config-cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ check Hive Gateway's docs to consume a supergraph.`,
const handlerConfig = legacySource.handler[handlerName];
const handlerInfo = handlerInfoMap[handlerName];
if (!handlerInfo) {
console.error(`Handler ${handlerName} is not supported in Mesh Compose CLI`);
console.error(
`Handler ${handlerName} is not supported currently in Mesh Migrate CLI, please do the migration manually.`,
);
process.exit(1);
}
addImport(importMap, handlerInfo.packageName, handlerInfo.importName);
Expand Down

0 comments on commit 866f1f6

Please sign in to comment.