Skip to content

fix: Ensure Langflow .env variable definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT#1667

Merged
rodageve merged 3 commits into
mainfrom
ensure_lf_env_vars_may22
May 22, 2026
Merged

fix: Ensure Langflow .env variable definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT#1667
rodageve merged 3 commits into
mainfrom
ensure_lf_env_vars_may22

Conversation

@rodageve

@rodageve rodageve commented May 22, 2026

Copy link
Copy Markdown
Collaborator

Description:
✅ Dynamic reconciliation - Works with any value of LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT (from defaults, operator env with OPTLF_ prefix, or CR spec)

✅ Backward compatible - Doesn't change existing behavior for variables that already have values

✅ Prevents missing variable errors - Langflow components will always find the variables they expect

✅ Consistent DOCLING_SERVE_URL - Both backend and Langflow use the same URL with proper priority:

Operator-managed Docling (DoclingComponents) > External Docling > Default "None"
✅ Handles edge cases - Empty strings, whitespace, missing list, custom lists all work correctly

✅ Three-level priority maintained - CR spec > Operator env > Defaults (unchanged)

Files Modified
kubernetes/operator/internal/controller/env.go - Added defaults and helper function
kubernetes/operator/internal/controller/openrag_controller.go - Integrated helper and fixed DOCLING_SERVE_URL logic
kubernetes/operator/internal/controller/env_test.go - Added comprehensive unit tests

Summary by CodeRabbit

  • New Features

    • Langflow environment variables are now auto-populated when missing (includes OpenSearch and Docling keys) to ensure consistent .env generation.
    • Docling integration now prefers operator-managed service settings when available for selecting the service URL.
  • Tests

    • Added unit and integration tests covering env-var parsing, trimming/skipping logic, preservation of existing values, and custom-list behavior; example output expectations updated.

Review Change Stack

…riables with default values when the comma separated list defined in LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT changes
@rodageve rodageve requested a review from zzzming May 22, 2026 18:40
@coderabbitai

coderabbitai Bot commented May 22, 2026

Copy link
Copy Markdown
Contributor

Walkthrough

EnvVarManager adds default OpenSearch and Docling environment entries and a new EnsureRequiredEnvVars method that populates missing variables from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT with "None"; the controller now calls this method when building the Langflow .env content.

Changes

Environment variable defaults and required-vars enforcement

Layer / File(s) Summary
EnvVarManager defaults and EnsureRequiredEnvVars method
kubernetes/operator/internal/controller/env.go
Langflow default environment set includes hardcoded "None" placeholders for OpenSearch variables (OPENSEARCH_PASSWORD, OPENSEARCH_URL, OPENSEARCH_INDEX_NAME) and Docling (DOCLING_SERVE_URL). New exported EnsureRequiredEnvVars method reads LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT as comma-separated list, trims whitespace, skips empty entries, and populates any missing listed variables with "None".
EnsureRequiredEnvVars test suite
kubernetes/operator/internal/controller/env_test.go, kubernetes/operator/internal/controller/env_example_test.go
Unit test validates map mutation by adding missing variables, preserving existing values (empty strings, "0"), trimming whitespace, and skipping empty entries. Integration test loads defaults, confirms the required-variable list key exists and is non-empty, runs the method, and asserts all expected OpenSearch/Docling keys are present. Custom-list test verifies behavior with a shorter custom variable list. Example output size updated.
Controller Docling and Langflow env integration
kubernetes/operator/internal/controller/openrag_controller.go
buildBackendEnv now prefers operator-managed DoclingComponents for DOCLING_SERVE_URL when enabled (defaulting port to 5001 and deriving host from service name), falling back to external Docling spec. buildLangflowEnv calls EnvVarManager.EnsureRequiredEnvVars on computed environment variables after Docling URL selection, ensuring all required variables are present before generating .env content.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~12 minutes

Suggested labels

enhancement, tests

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The PR title directly reflects the main change: adding dynamic reconciliation to ensure Langflow .env variables listed in LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT are properly populated, which is the core purpose of the changeset.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch ensure_lf_env_vars_may22

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions github-actions Bot added the lgtm label May 22, 2026
@rodageve rodageve changed the title Ensure we dynamically update the list of Langflow .env environment va… Fix: Ensure Langflow .env env var definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT May 22, 2026
@rodageve rodageve changed the title Fix: Ensure Langflow .env env var definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT Fix: Ensure Langflow .env variable definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT May 22, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🧹 Nitpick comments (2)
kubernetes/operator/internal/controller/openrag_controller.go (1)

504-513: ⚡ Quick win

Add a controller-level test for Docling precedence + required-var enforcement.

This method now combines two contracts (Docling URL priority and required-var backfill). A focused buildLangflowEnv test would prevent regressions that EnvVarManager unit tests won’t catch.

Also applies to: 525-527

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@kubernetes/operator/internal/controller/openrag_controller.go` around lines
504 - 513, Add a controller-level unit test for buildLangflowEnv in
openrag_controller.go that asserts (1) operator-managed DoclingComponents
(o.Spec.DoclingComponents with Enabled and Serve) takes precedence over external
o.Spec.Docling when both are present, and (2) required environment variables
(e.g., DOCLING_SERVE_URL) are populated/backfilled correctly when using the
operator-managed path and when using external Docling; implement test cases
covering operator-managed only, external-only, and both-present scenarios and
assert the resulting envVars map contains the expected URL and required keys so
regressions in precedence or required-var enforcement are caught.
kubernetes/operator/internal/controller/env_test.go (1)

352-361: ⚡ Quick win

Derive required vars from requiredVarsStr instead of hard-coding.

This block says it parses the list but currently hardcodes it. Splitting requiredVarsStr keeps the test aligned with future default-list changes.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@kubernetes/operator/internal/controller/env_test.go` around lines 352 - 361,
Replace the hard-coded construction of requiredVars with a split of the existing
requiredVarsStr so the test derives the list from the same source; specifically,
where requiredVars is built (variable requiredVars in env_test.go), use
strings.Split(requiredVarsStr, ",") (trimming spaces as needed) to populate
requiredVars instead of the manual slice so future changes to requiredVarsStr
are automatically reflected in the test.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@kubernetes/operator/internal/controller/env_test.go`:
- Around line 342-347: Test currently calls GetLangflowEnvVars(nil) which reads
the real process environment and makes the assertions flaky; instead construct
and pass a controlled defaults map (a copy of the manager's defaults or an
explicit map with the expected keys) or explicitly unset/sanitize
OPTLF_OPENSEARCH_* and OPTLF_DOCLING_SERVE_URL before calling GetLangflowEnvVars
so the function uses deterministic inputs; update the assertions that check
LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT and the similar block covering the
other assertions (the code around GetLangflowEnvVars,
LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT, OPTLF_OPENSEARCH_*, and
OPTLF_DOCLING_SERVE_URL) to use the sanitized map/copy to ensure the test is not
coupled to the host environment.

---

Nitpick comments:
In `@kubernetes/operator/internal/controller/env_test.go`:
- Around line 352-361: Replace the hard-coded construction of requiredVars with
a split of the existing requiredVarsStr so the test derives the list from the
same source; specifically, where requiredVars is built (variable requiredVars in
env_test.go), use strings.Split(requiredVarsStr, ",") (trimming spaces as
needed) to populate requiredVars instead of the manual slice so future changes
to requiredVarsStr are automatically reflected in the test.

In `@kubernetes/operator/internal/controller/openrag_controller.go`:
- Around line 504-513: Add a controller-level unit test for buildLangflowEnv in
openrag_controller.go that asserts (1) operator-managed DoclingComponents
(o.Spec.DoclingComponents with Enabled and Serve) takes precedence over external
o.Spec.Docling when both are present, and (2) required environment variables
(e.g., DOCLING_SERVE_URL) are populated/backfilled correctly when using the
operator-managed path and when using external Docling; implement test cases
covering operator-managed only, external-only, and both-present scenarios and
assert the resulting envVars map contains the expected URL and required keys so
regressions in precedence or required-var enforcement are caught.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: a10a5229-ee02-4dd5-87b7-416bedbf5d70

📥 Commits

Reviewing files that changed from the base of the PR and between ad2a136 and 6cad6d5.

📒 Files selected for processing (3)
  • kubernetes/operator/internal/controller/env.go
  • kubernetes/operator/internal/controller/env_test.go
  • kubernetes/operator/internal/controller/openrag_controller.go

Comment on lines +342 to +347
envVars := manager.GetLangflowEnvVars(nil)

// Verify LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT exists
requiredVarsStr, exists := envVars["LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT"]
assert.True(t, exists, "LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT should exist in defaults")
assert.NotEmpty(t, requiredVarsStr, "LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT should not be empty")

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Avoid host-environment coupling in this integration test.

GetLangflowEnvVars(nil) reads real process env, so these fixed "None" assertions can fail if OPTLF_OPENSEARCH_* or OPTLF_DOCLING_SERVE_URL is set in CI/runner env. Build from a copied defaults map (or explicitly sanitize those vars) to keep the test deterministic.

Also applies to: 372-375

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@kubernetes/operator/internal/controller/env_test.go` around lines 342 - 347,
Test currently calls GetLangflowEnvVars(nil) which reads the real process
environment and makes the assertions flaky; instead construct and pass a
controlled defaults map (a copy of the manager's defaults or an explicit map
with the expected keys) or explicitly unset/sanitize OPTLF_OPENSEARCH_* and
OPTLF_DOCLING_SERVE_URL before calling GetLangflowEnvVars so the function uses
deterministic inputs; update the assertions that check
LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT and the similar block covering the
other assertions (the code around GetLangflowEnvVars,
LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT, OPTLF_OPENSEARCH_*, and
OPTLF_DOCLING_SERVE_URL) to use the sanitized map/copy to ensure the test is not
coupled to the host environment.

@zzzming zzzming changed the title Fix: Ensure Langflow .env variable definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT fix: Ensure Langflow .env variable definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT May 22, 2026
@github-actions github-actions Bot added the bug 🔴 Something isn't working. label May 22, 2026
@github-actions github-actions Bot added bug 🔴 Something isn't working. and removed bug 🔴 Something isn't working. labels May 22, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
kubernetes/operator/internal/controller/env_test.go (1)

353-358: ⚡ Quick win

Derive required vars from requiredVarsStr instead of hardcoding the list.

This integration test currently validates a static list rather than the actual default contract. If defaults change, this can drift and produce misleading results.

♻️ Suggested update
-	requiredVars := []string{"JWT", "OPENRAG_QUERY_FILTER", "OPENSEARCH_PASSWORD", "OPENSEARCH_URL",
-		"OPENSEARCH_INDEX_NAME", "DOCLING_SERVE_URL", "DOCLING_TASK_ID", "OWNER", "OWNER_NAME",
-		"OWNER_EMAIL", "CONNECTOR_TYPE", "DOCUMENT_ID", "SOURCE_URL", "ALLOWED_USERS",
-		"ALLOWED_GROUPS", "FILENAME", "MIMETYPE", "FILESIZE", "SELECTED_EMBEDDING_MODEL",
-		"OPENAI_API_KEY", "ANTHROPIC_API_KEY", "WATSONX_API_KEY", "WATSONX_ENDPOINT",
-		"WATSONX_PROJECT_ID", "OLLAMA_BASE_URL"}
+	rawRequiredVars := strings.Split(requiredVarsStr, ",")
+	requiredVars := make([]string, 0, len(rawRequiredVars))
+	for _, v := range rawRequiredVars {
+		v = strings.TrimSpace(v)
+		if v != "" {
+			requiredVars = append(requiredVars, v)
+		}
+	}
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@kubernetes/operator/internal/controller/env_test.go` around lines 353 - 358,
The test currently hardcodes requiredVars; change it to derive the expected list
from the existing requiredVarsStr instead of the static slice. Replace the
hardcoded requiredVars declaration with code that parses requiredVarsStr (split
by the same delimiter used where requiredVarsStr is defined, trim spaces) and
use that resulting slice for assertions so the test reflects the canonical
default contract; update any variable names if needed to keep comparisons
consistent with the rest of env_test.go.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Nitpick comments:
In `@kubernetes/operator/internal/controller/env_test.go`:
- Around line 353-358: The test currently hardcodes requiredVars; change it to
derive the expected list from the existing requiredVarsStr instead of the static
slice. Replace the hardcoded requiredVars declaration with code that parses
requiredVarsStr (split by the same delimiter used where requiredVarsStr is
defined, trim spaces) and use that resulting slice for assertions so the test
reflects the canonical default contract; update any variable names if needed to
keep comparisons consistent with the rest of env_test.go.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: f759db2b-1946-4476-88e2-df4562537b2a

📥 Commits

Reviewing files that changed from the base of the PR and between dd7038e and 3d11165.

📒 Files selected for processing (1)
  • kubernetes/operator/internal/controller/env_test.go

@rodageve rodageve merged commit cd7d1fd into main May 22, 2026
15 checks passed
@github-actions github-actions Bot deleted the ensure_lf_env_vars_may22 branch May 22, 2026 18:57
ricofurtado pushed a commit that referenced this pull request May 23, 2026
…S_TO_GET_FROM_ENVIRONMENT (#1667)

* Ensure we dynamically update the list of Langflow .env environment variables with default values when the comma separated list defined in LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT changes

* fix tests

* fix additional linting errors

---------

Co-authored-by: rodageve <[email protected]>
ricofurtado pushed a commit that referenced this pull request May 23, 2026
…S_TO_GET_FROM_ENVIRONMENT (#1667)

* Ensure we dynamically update the list of Langflow .env environment variables with default values when the comma separated list defined in LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT changes

* fix tests

* fix additional linting errors

---------

Co-authored-by: rodageve <[email protected]>
ricofurtado added a commit that referenced this pull request May 26, 2026
* fix: Ensure SUCCESS status requires fetchable result in DoclingPollingService

* style: ruff autofix (auto)

* fix: Catch specific DoclingServeError when fetching task result after SUCCESS status

* feat: update style for oss of the failed task in the task panel (#1647)

* update style for oss of the failed task in the task panel

* keep logic on click, remove unecessary useeffect

* fix padding

* wip implementing Saas style

* utils to reshape error until backend provide info we need

* utils to reshape error until backend provide info we need

* utils to reshape error until backend provide info we need and fixinf fallbacks of isTotalFailure

* utils to reshape error until backend provide into

* have Saas style for failed and complete labelstatus and width and border

* few style adjustment to follow codebase pattern

* adjust succeed and partially succeed case

* adding comment for TODO implementation or more clarity

* remove carbon icon package and replace carbon icon

* add incident-reporter-icon

---------

Co-authored-by: Olfa Maslah <[email protected]>

* fix: Encode IBM API key as Basic auth header (#1664)

* Encode IBM API key as Basic auth header

Add base64 encoding for the IBM auth path: import base64, construct a Basic auth token from X-Username and X-Api-Key (username:apikey), and store it in user.jwt_token and user.opensearch_credentials. Also set request.state.user before attaching the DB user ID so downstream code can access the created user object.

* style: ruff autofix (auto)

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

* fix: restart deployment if env changes (#1665)

* restart deployment if env changes

* unit test

* lint

* fix: Ensure Langflow .env variable definitions from LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT (#1667)

* Ensure we dynamically update the list of Langflow .env environment variables with default values when the comma separated list defined in LANGFLOW_VARIABLES_TO_GET_FROM_ENVIRONMENT changes

* fix tests

* fix additional linting errors

---------

Co-authored-by: rodageve <[email protected]>

* chore: Retire openrag-mcp; switch docs to streamable HTTP (#1668)

* Retire openrag-mcp; switch docs to streamable HTTP

Remove the stdio-based MCP server and all in-repo MCP tooling, and update README to mark the package as retired. Deleted module files include the MCP entrypoint, server, config, registry and individual tools (chat, search, documents, settings). The README was rewritten to announce that openrag-mcp is retired, explain migration to the built-in streamable-HTTP /mcp endpoint, update Cursor/Claude examples to use URL+headers auth, list the new v1 API tools, and note that the last PyPI release is final. This change consolidates MCP functionality into the OpenRAG core and removes the subprocess/stdio implementation and its source code.

* Mark MCP SDK retired and clean package metadata

Update package metadata to reflect retirement and integration into the OpenRAG backend. Bump version to 0.3.0 and replace the project description with a retirement/migration note. Set Development Status to Inactive, remove explicit Python version classifiers, and clear runtime dependencies and the CLI script entrypoint. Also remove the hatch env pip-args setting; build-system and wheel package target remain unchanged.

* chore: update uv.lock files after version bump

* Update uv.lock

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* fix: connector sync and override feature (#1663)

* Add filename-based duplicate handling for connectors

Add end-to-end support for filename-based duplicate handling on connector ingests.

Frontend: send a new replace_duplicates flag with connector sync requests, perform a pre-sync duplicate check, and show a DuplicateHandlingDialog that lets users overwrite or skip duplicates when uploading from provider UI.

Backend: propagate replace_duplicates through connector_router, request models, and connector services into the file processors. ConnectorFileProcessor and LangflowConnectorFileProcessor now check whether a filename already exists in the index and either fail the file task or delete the existing document before ingesting when replace_duplicates is true.

Utilities/tests: clean_connector_filename now preserves original spacing/slashes and only enforces MIME-mapped extensions; get_filename_aliases adds underscore/sanitized variants so lookups match connector-indexed names. Add unit tests covering filename dedupe logic and filename alias behavior.

* Use duplicateNames list and display names

Replace numeric duplicateCount with a duplicateNames string[] across upload and dropdown flows so the UI can show the actual file names that would be overwritten. The duplicate-handling dialog now accepts duplicateNames, derives an effective count, and lists up to 5 duplicate filenames with an "… and N more" indicator; message labels and button text use the effective count. Toast messages and pending state in upload/[provider]/page.tsx and knowledge-dropdown.tsx were updated to pass and consume duplicateNames and to use duplicateNames.length for counts.

* Update page.tsx

* style: ruff autofix (auto)

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

* fix: update OAuth prompt to consent for connector mutation (#1657)

* fix: implement transient error handling for Docling result fetch

* style: ruff autofix (auto)

* refactor: remove unused import of Optional in docling_polling_service.py

* refactor: change PollOutcome to use StrEnum for better type safety

* refactor: enhance task status endpoints with structured failure metadata

* style: ruff autofix (auto)

* revert "style: ruff autofix (auto)"

This reverts commit bc8be33.

* style: ruff autofix (auto)

* fix: Ensure SUCCESS status requires fetchable result in DoclingPollingService

* style: ruff autofix (auto)

* fix: Catch specific DoclingServeError when fetching task result after SUCCESS status

* fix: implement transient error handling for Docling result fetch

* style: ruff autofix (auto)

* refactor: remove unused import of Optional in docling_polling_service.py

* refactor: change PollOutcome to use StrEnum for better type safety

* refactor: enhance task status endpoints with structured failure metadata

* style: ruff autofix (auto)

* revert "style: ruff autofix (auto)"

This reverts commit bc8be33.

* style: ruff autofix (auto)

* Update tests/unit/test_task_service_get_task_status2.py

Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>

* style: ruff autofix (auto)

* fix: handle timeout during Docling result fetch after SUCCESS status

* fix: update task status checks to use enum values for consistency

* fix: enhance failure metadata for duplicate file errors in ingestion

* style: ruff autofix (auto)

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Wallgau <[email protected]>
Co-authored-by: Olfa Maslah <[email protected]>
Co-authored-by: Edwin Jose <[email protected]>
Co-authored-by: ming <[email protected]>
Co-authored-by: rodageve <[email protected]>
Co-authored-by: rodageve <[email protected]>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug 🔴 Something isn't working. lgtm

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants