Path is too long, when restoring content from Umbraco Cloud

According to the documentation it should be possible to skip the path is too long error, when restoring content from Umbraco Cloud.

Link: docs.umbraco.com

So now I’ve added the following to my appsettings.json

"Deploy": {
      "Settings": {
          "ContinueOnMediaFilePathTooLongException": true
      }
    }

But I still get the same error.

What else can I do ?

This solved it for me, since I don’t really need the files locally.

"Deploy": {
      "Settings": {
          "ExcludedEntityTypes": ["media-file"],
          "ContinueOnMediaFilePathTooLongException": true
      }
    }

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.