Describe the bug
While running the cci flow run command to run the flow used to generate the data on the SF (using Snowfakery: https://snowfakery.readthedocs.io/en/latest/index.html#use-snowfakery-with-salesforce) org the following issue appears : Error: HTTPSConnectionPool(host='yoursite.scratch.my.salesforce.com', port=443): Read timed out. (read timeout=None).
- Python: 3.13.10
- CumulusCI: 4.6.0
- Corporate VPN connection is used.
Tried to switch off the firewall, it did not work.
Tried to find any way to set the timeout, but all the options did not work.
Reproduction steps
- Install Python: 3.13.10
- Install CumulusCI: 4.6.0
- Create a Snowfakery recipe e.g.
accounts.yml according to the instruction (https://snowfakery.readthedocs.io/en/latest/index.html#use-snowfakery-with-salesforce) + set the higher count attribute value and populate more fields.
- Import the SF org using command:
cci org import <sf_alias> <cci_alias>
- Set that org as default using command:
cci org default <cci_alias>
- Outline the data load task in the
cumulusci.yml:``` tasks:
generate_accounts:
description: "Generates Accounts"
class_path: cumulusci.tasks.bulkdata.generate_and_load_data_from_yaml.GenerateAndLoadDataFromYaml
options:
generator_yaml: cci/ldv-recipes/accounts.yml
7. Try to run the task using `cci task run generate_accounts`
8. Explore the results.
Maybe that issue cannot be reproduced from the very first time.
<img width="2184" height="608" alt="Image" src="https://github.com/user-attachments/assets/4042f324-3342-4c3e-bae2-1c8a0f7cb731" />
### Your CumulusCI and Python versions
- Python: 3.13.10
- CumulusCI: 4.6.0
### Operating System
Windows 11 Pro
### Windows environment
Bash on Windows
### CumulusCI installation method
pipx
### Error Gist
_No response_
### Additional information
_No response_
Describe the bug
While running the
cci flow runcommand to run the flow used to generate the data on the SF (using Snowfakery: https://snowfakery.readthedocs.io/en/latest/index.html#use-snowfakery-with-salesforce) org the following issue appears :Error: HTTPSConnectionPool(host='yoursite.scratch.my.salesforce.com', port=443): Read timed out. (read timeout=None).Tried to switch off the firewall, it did not work.
Tried to find any way to set the timeout, but all the options did not work.
Reproduction steps
accounts.ymlaccording to the instruction (https://snowfakery.readthedocs.io/en/latest/index.html#use-snowfakery-with-salesforce) + set the highercountattribute value and populate more fields.cci org import <sf_alias> <cci_alias>cci org default <cci_alias>cumulusci.yml:``` tasks:generate_accounts:
description: "Generates Accounts"
class_path: cumulusci.tasks.bulkdata.generate_and_load_data_from_yaml.GenerateAndLoadDataFromYaml
options:
generator_yaml: cci/ldv-recipes/accounts.yml