Skip to content

Bug 86073: validate duplicate vSphere failureDomain topology#10563

Open
chdeshpa-hue wants to merge 2 commits into
openshift:mainfrom
chdeshpa-hue:fix/OCPBUGS-86074-vsphere-duplicate-failuredomain-topology
Open

Bug 86073: validate duplicate vSphere failureDomain topology#10563
chdeshpa-hue wants to merge 2 commits into
openshift:mainfrom
chdeshpa-hue:fix/OCPBUGS-86074-vsphere-duplicate-failuredomain-topology

Conversation

@chdeshpa-hue
Copy link
Copy Markdown

@chdeshpa-hue chdeshpa-hue commented May 19, 2026

Summary

  • Adds validation in validateFailureDomains to detect when two or more vSphere failure domains have identical topology (same server, datacenter, computeCluster, datastore, networks, and resourcePool). Copy-pasted failure domains that differ only in name/region/zone labels provide no additional fault tolerance and can cause subtle scheduling issues.
  • Inventory paths (computeCluster, datastore, resourcePool) are canonicalized with filepath.Clean before comparison so that syntactically different but semantically equivalent paths (e.g. trailing slashes, double separators) are normalized.

Split from #10561 per reviewer feedback — this PR contains the vSphere portion only.

Bug: https://redhat.atlassian.net/browse/OCPBUGS-86073

Manual Test Results

Tested with a custom-built openshift-install binary against a live vSphere environment. When two failure domains share identical topology but different names, the installer now correctly rejects:

ERROR failed to load asset "Install Config": invalid "install-config.yaml" file:
  platform.vsphere.failureDomains[1]: Invalid value: "ocp3-h6c9h-fd-2":
    failure domain "ocp3-h6c9h-fd-2" has identical topology (same server, datacenter,
    computeCluster, datastore, networks, resourcePool) as "ocp3-h6c9h-fd-1";
    this provides no additional fault tolerance

Test Plan

  • Unit tests pass: go test ./pkg/types/vsphere/validation/
  • New test case: Multi-zone platform failureDomain duplicate topology
  • Existing test Resources in customized folders updated to use distinct ResourcePool paths
  • Manual testing against live vSphere environment

/cc @jcpowermac

Made with Cursor

Summary by CodeRabbit

  • Bug Fixes
    • vSphere validation now rejects failure domains that share identical underlying topology, preventing invalid multi-zone cluster configurations.
  • Tests
    • Added a negative test to ensure duplicate-topology failure domains are rejected and updated existing tests to use unique resource paths per failure domain.

Adds a check in validateFailureDomains that detects when two or more
failure domains have identical topology (same server, datacenter,
computeCluster, datastore, networks, and resourcePool). Copy-pasted
failure domains that differ only in name/region/zone labels provide
no additional fault tolerance and can cause subtle scheduling issues.

Inventory paths (computeCluster, datastore, resourcePool) are
canonicalized with filepath.Clean before comparison so that
syntactically different but semantically equivalent paths (e.g.
trailing slashes, double separators) are normalized.

Bug: https://redhat.atlassian.net/browse/OCPBUGS-86074
Co-authored-by: Cursor <cursoragent@cursor.com>
@openshift-ci openshift-ci Bot requested a review from jcpowermac May 19, 2026 11:57
@openshift-ci openshift-ci Bot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label May 19, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 19, 2026

Hi @chdeshpa-hue. Thanks for your PR.

I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 19, 2026

Walkthrough

Adds canonicalization for vSphere failure-domain topology (paths cleaned, networks sorted) and validation that rejects multiple failure domains with identical resulting topology; tests updated to assert duplicate-topology is invalid and to use unique resource-pool paths in tests.

Changes

Failure domain duplicate topology detection

Layer / File(s) Summary
Imports and topology canonicalization
pkg/types/vsphere/validation/platform.go
Adds sort import and introduces vsphereTopologyKey plus normalizedTopologyKey(fd vsphere.FailureDomain) which canonicalizes path-like fields and sorts Topology.Networks for stable comparison.
Duplicate topology detection in validator
pkg/types/vsphere/validation/platform.go
Initializes fdTopologies map in validateFailureDomains, computes normalized topology keys per failure domain, emits field.Invalid for duplicates, and records first-seen topology names.
Tests: unique resource pools and duplicate-topology negative case
pkg/types/vsphere/validation/platform_test.go
Updates "Resources in customized folders" test to use unique per-index Topology.ResourcePool paths; adds a "Multi-zone platform failureDomain duplicate topology" test asserting validator rejects identical topology across failure domains; retains HostGroup-positive case.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

🚥 Pre-merge checks | ✅ 11 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 50.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (11 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title directly and clearly describes the main change: adding validation to detect duplicate vSphere failure domain topologies, which is the core purpose of this PR.
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.
Stable And Deterministic Test Names ✅ Passed Test file uses standard Go testing with static test names. No dynamic content in test titles; dynamic values only in test bodies.
Test Structure And Quality ✅ Passed The PR modifies standard Go table-driven tests in platform_test.go using the testing package, not Ginkgo tests. The custom check explicitly reviews Ginkgo test code, which is not applicable here.
Microshift Test Compatibility ✅ Passed PR adds only standard Go unit tests, not Ginkgo e2e tests. The MicroShift check only applies to Ginkgo tests, which are not present here.
Single Node Openshift (Sno) Test Compatibility ✅ Passed PR changes are unit tests (standard Go testing framework) not Ginkgo e2e tests. Check only applies to Ginkgo e2e tests, which are absent here.
Topology-Aware Scheduling Compatibility ✅ Passed PR adds vSphere platform configuration validation only. No pod scheduling constraints, deployments, or operator code that would affect non-HA topologies.
Ote Binary Stdout Contract ✅ Passed No process-level stdout writes found. The fmt.Printf in platform_test.go line 1184 is inside t.Run(), a test case block explicitly excluded from the check. logrus calls default to stderr.
Ipv6 And Disconnected Network Test Compatibility ✅ Passed This PR does not add new Ginkgo e2e tests. Changes are in platform validation unit tests using standard Go testing.T, not Ginkgo framework, so the check does not apply.

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

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Warning

There were issues while running some tools. Please review the errors and either fix the tool's configuration or disable the tool if it's a critical failure.

🔧 golangci-lint (2.12.2)

Error: can't load config: unsupported version of the configuration: "" See https://golangci-lint.run/docs/product/migration-guide for migration instructions
The command is terminated due to an error: can't load config: unsupported version of the configuration: "" See https://golangci-lint.run/docs/product/migration-guide for migration instructions


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.

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 19, 2026

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign vr4manta for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@jcpowermac
Copy link
Copy Markdown
Contributor

/ok-to-test

@openshift-ci openshift-ci Bot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels May 19, 2026
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 2

🧹 Nitpick comments (1)
pkg/types/vsphere/validation/platform.go (1)

361-366: ⚖️ Poor tradeoff

Consider using path.Clean instead of filepath.Clean for vSphere paths.

vSphere inventory paths always use forward slashes (URL-style), but filepath.Clean uses OS-specific path separators (backslashes on Windows). The path.Clean function from the "path" package is designed for slash-separated paths and would be more semantically correct.

That said, this pattern already exists throughout this file (lines 262, 317, 336, 346), so changing it here alone wouldn't be consistent. This is noted for potential future refactoring across the file.

🤖 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 `@pkg/types/vsphere/validation/platform.go` around lines 361 - 366, The
normalizePath closure uses filepath.Clean which applies OS-specific separators;
replace filepath.Clean with path.Clean (from the "path" package) so vSphere
inventory paths (slash-separated) are normalized correctly; update imports to
include "path" if missing and consider aligning the same change for the other
occurrences of filepath.Clean in this file (e.g., the similar closures/uses
around the functions referenced at lines near the existing normalizePath
instances).
🤖 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 `@pkg/types/vsphere/validation/platform_test.go`:
- Around line 555-564: Update the duplicate-topology detection so HostGroup
failure domains are allowed to share all topology fields except
Topology.HostGroup: modify the topology-key construction function
vsphereFailureDomainTopologyKey (and any code that uses it to detect duplicates)
to include Topology.HostGroup when the failure domain ZoneType is
HostGroupFailureDomain (so keys differ for different HostGroup values), and add
the new test "Valid HostGroup failure domains with same topology but different
HostGroups" to pkg/types/vsphere/validation/platform_test.go to assert no error
is produced.

In `@pkg/types/vsphere/validation/platform.go`:
- Around line 353-375: The topology key builder vsphereFailureDomainTopologyKey
omits Topology.HostGroup so HostGroup-based failure domains can be treated as
duplicates; update vsphereFailureDomainTopologyKey to include
fd.Topology.HostGroup (normalized like other path-like fields, e.g., via
normalizePath or directly) into the fmt.Sprintf key (e.g., add a hostGroup=%s
segment) and ensure networks sorting/copying remains unchanged; also update the
related validation/error message that lists topology fields (the one referencing
hostGroup currently missing) to include hostGroup so error text correctly
reflects the fields compared for duplicate detection.

---

Nitpick comments:
In `@pkg/types/vsphere/validation/platform.go`:
- Around line 361-366: The normalizePath closure uses filepath.Clean which
applies OS-specific separators; replace filepath.Clean with path.Clean (from the
"path" package) so vSphere inventory paths (slash-separated) are normalized
correctly; update imports to include "path" if missing and consider aligning the
same change for the other occurrences of filepath.Clean in this file (e.g., the
similar closures/uses around the functions referenced at lines near the existing
normalizePath instances).
🪄 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: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 54606e31-2d37-4340-adb4-6bb0b7b87799

📥 Commits

Reviewing files that changed from the base of the PR and between 0d798da and 0f0778c.

📒 Files selected for processing (2)
  • pkg/types/vsphere/validation/platform.go
  • pkg/types/vsphere/validation/platform_test.go

Comment thread pkg/types/vsphere/validation/platform_test.go
Comment thread pkg/types/vsphere/validation/platform.go Outdated
// vsphereFailureDomainTopologyKey builds a comparable key from the infrastructure-defining
// fields of a failure domain topology. Inventory paths are canonicalized with filepath.Clean
// so that syntactically different but equivalent paths (e.g. trailing slashes) are normalized.
func vsphereFailureDomainTopologyKey(fd vsphere.FailureDomain) string {
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.

This will absolutely break vm-host zonal

I am not entirely excited with this function

if p == "" {
return ""
}
return filepath.Clean(p)
Copy link
Copy Markdown
Contributor

@jcpowermac jcpowermac May 19, 2026

Choose a reason for hiding this comment

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

this is wrong, paths within govc/govmomi are not file paths, use path.Clean()

@chdeshpa-hue chdeshpa-hue changed the title Bug 86074: validate duplicate vSphere failureDomain topology Bug 86073: validate duplicate vSphere failureDomain topology May 19, 2026
return filepath.Clean(p)
}

return fmt.Sprintf("server=%s;dc=%s;cluster=%s;ds=%s;nets=%s;rp=%s",
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.

There has to be a better way to determine if failure domain / topology is colliding.

Copy link
Copy Markdown
Contributor

@jcpowermac jcpowermac left a comment

Choose a reason for hiding this comment

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

This was claude's review

Feedback on vsphereFailureDomainTopologyKey

The string-key approach with fmt.Sprintf("server=%s;dc=%s;cluster=%s;...") is fragile:

  1. Relies on field values never containing the delimiters (;, =, ,)
  2. Must be manually kept in sync if Topology fields change
  3. Ambiguous network join — "net-a,b" + "net-c" vs "net-a" + "b,net-c" produce the same comma-joined string

Suggested approach: use a comparable struct as the map key

Go supports struct map keys as long as all fields are comparable. Define a small struct with only the fields that define physical topology, and use it directly:

type failureDomainTopology struct {
	server         string
	datacenter     string
	computeCluster string
	datastore      string
	networks       string
	resourcePool   string
}

func normalizedTopology(fd vsphere.FailureDomain) failureDomainTopology {
	networks := make([]string, len(fd.Topology.Networks))
	copy(networks, fd.Topology.Networks)
	sort.Strings(networks)

	return failureDomainTopology{
		server:         fd.Server,
		datacenter:     fd.Topology.Datacenter,
		computeCluster: filepath.Clean(fd.Topology.ComputeCluster),
		datastore:      filepath.Clean(fd.Topology.Datastore),
		networks:       strings.Join(networks, "\x00"),
		resourcePool:   filepath.Clean(fd.Topology.ResourcePool),
	}
}

Then the validation simplifies to:

fdTopologies := make(map[failureDomainTopology]string)

// in the loop:
topo := normalizedTopology(failureDomain)
if prevName, exists := fdTopologies[topo]; exists {
    allErrs = append(allErrs, field.Invalid(...))
} else {
    fdTopologies[topo] = failureDomain.Name
}

Why not reuse FailureDomain or Topology directly? Both contain fields we want to exclude from comparison. FailureDomain has identity/label fields (Name, Region, Zone, RegionType, ZoneType). Topology has fields like Folder, Template, TagIDs, HostGroup that aren't relevant to the duplicate-infrastructure check. A dedicated struct makes the "these are the fields that define physical topology" decision explicit and reviewable — and it won't silently include new fields added later.

Update: I think Claude is wrong here, if we are installing vm-host zonal, hostgroup would need to be checked.

Benefits over the string key:

  • Type-safe — no delimiter injection risk
  • Compiler-checked — field additions are obvious at the struct definition, not buried in a format string
  • Uses \x00 as network separator — can't appear in vSphere inventory paths, eliminating join ambiguity

@chdeshpa-hue
Copy link
Copy Markdown
Author

Thanks for the review @jcpowermac — all valid points. Here's how I'll address them:

CI failures: Investigated both — they're infra flakes unrelated to this change:

  • devpreview: machine-config operator timeout after 69min (single legacy-topology FD, duplicate check never triggered)
  • hybrid-env: 4/1554 e2e test failures after successful install (cluster health flakes)

Will fix in V2:

  1. HostGroup: You're right, this will break vm-host zonal. Will include Topology.HostGroup in the comparison so FDs sharing the same cluster/datastore/network/resourcePool but pointing to different HostGroups are correctly treated as distinct fault zones.

  2. path.Clean vs filepath.Clean: Agreed — vSphere inventory paths are URL-style (always /), not OS paths. Will switch to path.Clean.

  3. Struct key instead of string key: Will refactor to use a comparable struct as the map key per your suggestion. Benefits: type-safe, no delimiter injection risk, compiler-checked, and uses \x00 as network separator to eliminate join ambiguity.

Will push V2 shortly.

- Refactor from fmt.Sprintf string key to comparable struct map key
  (type-safe, no delimiter injection risk, compiler-checked)
- Include Topology.HostGroup in comparison so vm-host zonal failure
  domains with different HostGroups are not falsely rejected
- Switch from filepath.Clean to path.Clean for vSphere inventory paths
  (URL-style, always forward slashes — not OS paths)
- Use \x00 as network separator to eliminate join ambiguity
- Add positive test: HostGroup FDs with same topology but different
  HostGroups must pass validation
- Update error message to include hostGroup in the list of compared fields

Bug: https://redhat.atlassian.net/browse/OCPBUGS-86073
Co-authored-by: Cursor <cursoragent@cursor.com>
Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🤖 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 `@pkg/types/vsphere/validation/platform.go`:
- Around line 389-397: The current vsphereTopologyKey construction always sets
hostGroup from fd.Topology.HostGroup which lets non-HostGroup failure domains
evade duplicate-topology detection; modify the return so hostGroup is populated
only when the failure domain is a HostGroup zone (e.g., check fd.Type or
equivalent type field for the HostGroup enum/value) and otherwise set hostGroup
to an empty string (or nil-equivalent). Update the code around the
vsphereTopologyKey return (referencing vsphereTopologyKey, hostGroup,
fd.Topology.HostGroup, and fd.Type) so only HostGroup-type failure domains
contribute their HostGroup into the dedupe key.
🪄 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: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Enterprise

Run ID: 5cb61b55-abb2-4163-9e76-e90b0be207b1

📥 Commits

Reviewing files that changed from the base of the PR and between 0f0778c and 7da08ac.

📒 Files selected for processing (2)
  • pkg/types/vsphere/validation/platform.go
  • pkg/types/vsphere/validation/platform_test.go

Comment on lines +389 to +397
return vsphereTopologyKey{
server: fd.Server,
datacenter: fd.Topology.Datacenter,
computeCluster: normalizePath(fd.Topology.ComputeCluster),
datastore: normalizePath(fd.Topology.Datastore),
networks: strings.Join(networks, "\x00"),
resourcePool: normalizePath(fd.Topology.ResourcePool),
hostGroup: fd.Topology.HostGroup,
}
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Gate hostGroup participation in dedupe to HostGroup zones only.

As written, non-HostGroup failure domains can evade duplicate-topology detection by setting different Topology.HostGroup values, even though hostGroup is not topology-defining for those zone types.

🔧 Proposed fix
 func normalizedTopologyKey(fd vsphere.FailureDomain) vsphereTopologyKey {
 	networks := make([]string, len(fd.Topology.Networks))
 	copy(networks, fd.Topology.Networks)
 	sort.Strings(networks)
@@
+	hostGroup := ""
+	if fd.ZoneType == vsphere.HostGroupFailureDomain {
+		hostGroup = fd.Topology.HostGroup
+	}
+
 	return vsphereTopologyKey{
 		server:         fd.Server,
 		datacenter:     fd.Topology.Datacenter,
 		computeCluster: normalizePath(fd.Topology.ComputeCluster),
 		datastore:      normalizePath(fd.Topology.Datastore),
 		networks:       strings.Join(networks, "\x00"),
 		resourcePool:   normalizePath(fd.Topology.ResourcePool),
-		hostGroup:      fd.Topology.HostGroup,
+		hostGroup:      hostGroup,
 	}
 }
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
return vsphereTopologyKey{
server: fd.Server,
datacenter: fd.Topology.Datacenter,
computeCluster: normalizePath(fd.Topology.ComputeCluster),
datastore: normalizePath(fd.Topology.Datastore),
networks: strings.Join(networks, "\x00"),
resourcePool: normalizePath(fd.Topology.ResourcePool),
hostGroup: fd.Topology.HostGroup,
}
hostGroup := ""
if fd.ZoneType == vsphere.HostGroupFailureDomain {
hostGroup = fd.Topology.HostGroup
}
return vsphereTopologyKey{
server: fd.Server,
datacenter: fd.Topology.Datacenter,
computeCluster: normalizePath(fd.Topology.ComputeCluster),
datastore: normalizePath(fd.Topology.Datastore),
networks: strings.Join(networks, "\x00"),
resourcePool: normalizePath(fd.Topology.ResourcePool),
hostGroup: hostGroup,
}
🤖 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 `@pkg/types/vsphere/validation/platform.go` around lines 389 - 397, The current
vsphereTopologyKey construction always sets hostGroup from fd.Topology.HostGroup
which lets non-HostGroup failure domains evade duplicate-topology detection;
modify the return so hostGroup is populated only when the failure domain is a
HostGroup zone (e.g., check fd.Type or equivalent type field for the HostGroup
enum/value) and otherwise set hostGroup to an empty string (or nil-equivalent).
Update the code around the vsphereTopologyKey return (referencing
vsphereTopologyKey, hostGroup, fd.Topology.HostGroup, and fd.Type) so only
HostGroup-type failure domains contribute their HostGroup into the dedupe key.

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci Bot commented May 20, 2026

@chdeshpa-hue: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/e2e-vsphere-ovn-devpreview 7da08ac link false /test e2e-vsphere-ovn-devpreview
ci/prow/e2e-vsphere-ovn-hybrid-env 7da08ac link false /test e2e-vsphere-ovn-hybrid-env

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ok-to-test Indicates a non-member PR verified by an org member that is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants