Closed jdiekman closed 2 years ago
We had some issues over the weekend. We have fixed that. Please run your pipeline again. I would recommend that you create a support case with the logs from GitHub.
@jdiekman are you still experiencing this issue? if so can you let us know if the issue is the same? or has it changed?
I'm experiencing this issue as well (the 2 minute timeout error, specifically. My workflow(s) are a bit different from OP's, but functionally mostly the same). While the workflow always fails on the first attempt, rerunning the job will cause it to succeed (though sometimes it may take multiple reruns).
Additionally, I notice that while the workflow fails, the solution components have their modified date updated in the target environment.
We started experiencing this issue few days ago, been using these actions for month and it was never an issue. We are still experiencing it as of today.
@jjkinsey @sync you are experiencing this on export. There was a GitHub outage today, but it should be fixed by now.
Yes haven't had any issues with it since yesterday late arvo so far. Was wrong it came back at random
@jdiekman are you still having the issues? if not, can we close this issue?
I'm still having this problem with the import-solution
action (version 0.5.1
). The specific error message I'm getting is:
Error: The request channel timed out attempting to send after 00:02:00. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.
The request channel timed out attempting to send after 00:02:00. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.
The HTTP request to '***XRMServices/2011/Organization.svc/web?SDKClientVersion=9.0.46.3291' has exceeded the allotted timeout of 00:02:00. The time allotted to this operation may have been a portion of a longer timeout.
Only some of my solutions have this problem when imported; I haven't been able to test rigorously for what might be different between the ones that work and the ones that don't.
Same also with the same error
@kkanakas - Just tried to export the solution. Failed again
'The request channel timed out while waiting for a reply after 00:02:00. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.'
Nothing has changed on our end. Originally we thought the issues was due to new connection references, but that was affecting our solution import.
Any ideas? Seems a few people are having this issue now @kkanakas
Can you do me a favor and open a support ticket and send the logs over to the support team, so that we can look at it, please?
I'd be happy to, but I'm not sure how to do that. Do you have a link to instructions? Would speed the process up on my end.
On your Power Platform Admin center you will see help +support on the left side panel
@kkanakas do you need another support ticket logged for this? have there been any updates?
Same error for me with the import-solution@v0 action. "Error: The request channel timed out while waiting for a reply after 00:01:59.9970007. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.".
Microsoft PowerPlatform CLI
Version: 1.10.4+gf23be2f
Error: The request channel timed out while waiting for a reply after 00:01:17.9707259. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.
The HTTP request to 'https://<
Also got this issue with the import-solution@v0 action
The request channel timed out while waiting for a reply after 00:01:59.9990013. Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout. The HTTP request to 'https://xxx.crm4.dynamics.com/XRMServices/2011/Organization.svc/web?SDKClientVersion=9.0.46.3291' has exceeded the allotted timeout of 00:02:00. The time allotted to this operation may have been a portion of a longer timeout. The operation has timed out
We're also encountering this error with the import-solution action.
Interesting: Checking the Solutions/History page in the power apps environment shows, that the import has been completed successfully (in our case with 3m 28sec operation time). So this seems to occur just in the Github action itself (it seems that there are some synchronous HTTP requests in there).
I just see that the action definition has a parameter run-asynchronously
(https://github.com/microsoft/powerplatform-actions/blob/main/import-solution/action.yml), I'll try that.
Yes! I can confirm that for us this parameter resolves the problem. The workflow step now looks like:
- name: Import solution as unmanaged to build env
uses: microsoft/powerplatform-actions/import-solution@v0
with:
environment-url: ${{inputs.BUILD_ENVIRONMENT_URL}}
app-id: ${{inputs.CLIENT_ID}}
client-secret: ${{ secrets.envSecret }}
tenant-id: ${{inputs.TENANT_ID}}
solution-file: ${{ inputs.solution_outbound_folder}}/${{ inputs.solution_name }}.zip
force-overwrite: true
publish-changes: true
run-asynchronously: true # Otherwise there is client-side timeout of 02:00, which causes the action to fail (but nevertheless the import is completed successfully)
This should no longer be an issue. If this occurs when using v0 tasks migrate ALL tasks in the impacted pipeline to v2.* to ensure you are using the latest update.
Hi,
We had our pipelines working nicely, however, importing the managed solution from Build > Production is continually failing with this error.
Increase the timeout value passed to the call to Request or increase the SendTimeout value on the Binding. The time allotted to this operation may have been a portion of a longer timeout.
Importing the unmanaged solution from Dev > Build works fine, it fails whilst trying to export to managed and import. Exactly where/why it's failing were unsure.
Action below - removed org-specific details.
name: release-solution-to-prod
prepare for releasing to prod:
convert solution to managed (using a build PowerPlatform environment for the conversion)
upload the solution to the GitHub artifacts and deploy to the PROD environment
on: workflow_dispatch: inputs:
Change this value
release: types: [created]
env:
edit your values here
BUILD_ENVIRONMENT_URL: 'https://xxx.crm6.dynamics.com' PRODUCTION_ENVIRONMENT_URL: 'https://xxx.crm6.dynamics.com' CLIENT_ID: 'xxxxxx' TENANT_ID: 'xxxxxxx'
jobs: convert-to-managed: runs-on: windows-latest
or you can say runs-on: ubuntu-latest
release-to-staging: needs: [ convert-to-managed ] runs-on: windows-latest env: RUNNER_DEBUG: 1