Skip to content

Commit cc5ebe2

Browse files
author
Paulo Lacerda
committed
fix excel ingestion
1 parent 9ceb38a commit cc5ebe2

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"ghcr.io/devcontainers/features/git:1": {},
88
"ghcr.io/devcontainers/features/azure-cli:1.2.9": {}
99
},
10-
"appPort": [80],
10+
"appPort": [8080],
1111
"customizations": {
1212
"vscode": {
1313
"settings": {

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This format follows [Keep a Changelog](https://keepachangelog.com/) and adheres
66
## [v2.2.1] – 2026-01-19
77
### Fixed
88
- Improved reliability of large spreadsheet ingestion (which generate thousands of embedding calls prone to transient rate limits) by adding robust retry with exponential backoff for Azure OpenAI calls (handles 429/Retry-After and is configurable via `OPENAI_RETRY_*` and `OPENAI_SDK_MAX_RETRIES`).
9-
- Reduced unexpected restarts during long runs by ensuring Azure Container Apps targets port `8080` during deployment (avoids transient probe failures caused by mismatched target port that could interrupt pipeline processing).
9+
- Standardized on the container best practice of using a non-privileged port (`8080`) instead of a privileged port (`80`), reducing the risk of runtime/permission friction and improving stability of long-running ingestion workloads.
1010

1111
## [v2.2.0] – 2026-01-15
1212
### Added

launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"args": [
1010
"main:app",
1111
"--host", "0.0.0.0",
12-
"--port", "80",
12+
"--port", "8080",
1313
"--reload"
1414
],
1515
"env": {

0 commit comments

Comments
 (0)