Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ $ git log origin/master..origin/gwright99/25_2_0_update --oneline
- Added Studios SSH support. Requires Platform >= v25.3.3 and connect-proxy >= 0.10.0. [`#313`](https://github.com/seqeralabs/cx-field-tools-installer/issues/313)
- Updated Platform Connect containers version to 0.11.0.
- Updated Studios recommended base images.
- Raised wave-lite nginx `client_max_body_size` from 1m to 10m to prevent HTTP 413 errors when Fusion uploads large bin/ bundles. [`#315`](https://github.com/seqeralabs/cx-field-tools-installer/issues/315)
- TBD
<br /><br />

Expand Down
11 changes: 5 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apply: verify
@echo "Invoking 'terraform apply'"
@terraform apply

destroy:
destroy:
@python3 .githooks/check_destroy.py
@terraform destroy

Expand All @@ -35,7 +35,7 @@ generate_json_plan:
test_cleanse:
@rm tests/datafiles/base-overrides.auto.tfvars
@rm tests/datafiles/terraform.tfvars
@rm tests/datafiles/secrets/*.json
@rm tests/datafiles/secrets/*.json

generate_test_data:
@echo "Generating test data."
Expand All @@ -45,6 +45,9 @@ generate_test_data:
run_tests:
@pytest -c tests/pytest.ini tests/

run_tests_no_containers:
@pytest -c tests/pytest.ini tests/ -m "not testcontainer"

purge_cached_plans:
@cd tests/ && rm -rf .plan_cache

Expand All @@ -55,7 +58,3 @@ purge_cache:
@echo "Purging testing caches"
@$(MAKE) purge_cached_templatefiles
@$(MAKE) purge_cached_plans




2 changes: 2 additions & 0 deletions assets/src/wave_lite_config/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ http {
server {
listen 80;

client_max_body_size 10m;

location / {
proxy_pass http://wave;

Expand Down
Loading