Forge remote endpoints not called in migration process

Hello,

I am developing the migration process from Server to Cloud with Forge.

In the server, the implementation is done and working according to the guide in Prepare your server app for Forge | App migration platform

I can see the log messages I’m adding to know the process is uploading my app data and it ends successfully.

Then, in my Cloud app, I have defined the event listener and endpoints according to https://developer.atlassian.com/platform/app-migration/prepare-cloud-app-forge-remote/ (we use Forge remote)

The migration checks are all green and I can start the migration. However, when the app data is uploaded, the expected events in Cloud are never coming.

I am using Cloudflare tunnel to expose the Forge remote and the endpoints are not being called at any time.

The migration is targeted towards my dev instance. I have checked in Server app that all the methods in the listener interface are with correct values. And the usual behavior of the app in Cloud is working.

In my manifest:

modules:
  trigger:
    - key: migration-listener-trigger
      endpoint: migration-listener-endpoint
      events:
        - avi:ecosystem.migration:uploaded:app_data
        - avi:ecosystem.migration:triggered:listener
        - avi:ecosystem.migration:errored:listener
        - avi:ecosystem.migration:settled:transfer
...
  endpoint:
    - key: migration-listener-endpoint
      remote: connect
      route:
        path: /migration-hub/forge/event
...
remotes:
  - key: connect
    baseUrl:
      default: ...
    auth:
      appSystemToken:
        enabled: true
    operations:
      - storage
      - compute

Could you help me to troubleshoot this incident?