diff --git a/docs/advanced/no-code-upgrade.md b/docs/advanced/no-code-upgrade.md index 3260290411cdc8..0d4befc3fd6060 100644 --- a/docs/advanced/no-code-upgrade.md +++ b/docs/advanced/no-code-upgrade.md @@ -71,8 +71,8 @@ You can either 2. Define a new ".env" file containing your variables and execute `docker pull acryldata/datahub-upgrade && docker run acryldata/datahub-upgrade:latest -u NoCodeDataMigration` -To see the required environment variables, see the (datahub-upgrade)[../../docker/datahub-upgrade/README.md] -documentation +To see the required environment variables, see the [datahub-upgrade](../../docker/datahub-upgrade/README.md) +documentation. ##### How to fix the "listening to port 5005" issue @@ -105,8 +105,8 @@ validated that your DataHub deployment is healthy after performing the upgrade. view your Metadata after the upgrade steps have been completed, you should be in good shape. In advanced DataHub deployments, or cases in which you cannot easily rebuild the state stored in DataHub, it is strongly -advised that you do due diligence prior to running cleanup. This may involve manually inspecting the relational tables ( -metadata_aspect_v2), search indices, and graph topology. +advised that you do due diligence prior to running cleanup. This may involve manually inspecting the relational +tables (metadata_aspect_v2), search indices, and graph topology. #### Docker Compose Deployments diff --git a/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java b/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java index 8e546024764f2b..c000aa4616fc98 100644 --- a/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java +++ b/metadata-io/src/main/java/com/linkedin/metadata/entity/ebean/EbeanAspectDao.java @@ -99,7 +99,8 @@ private boolean validateConnection() { return true; } if (!AspectStorageValidationUtil.checkV2TableExists(_server)) { - _logger.error("GMS is on a newer version than your storage layer. Please refer to /docs/advanced/no-code-upgrade.md for an easy upgrade guide"); + _logger.error("GMS is on a newer version than your storage layer. Please refer to " + + "https://datahubproject.io/docs/advanced/no-code-upgrade for an easy upgrade guide"); _canWrite = false; return false; } else {