Skip to content

Fixed XML doc summary in AzureBlobOperationDocumentStorage#9073

Merged
glen-84 merged 1 commit intomainfrom
gai/fix-doc-comment
Jan 28, 2026
Merged

Fixed XML doc summary in AzureBlobOperationDocumentStorage#9073
glen-84 merged 1 commit intomainfrom
gai/fix-doc-comment

Conversation

@glen-84
Copy link
Copy Markdown
Member

@glen-84 glen-84 commented Jan 28, 2026

Summary of the changes (Less than 80 chars)

  • Fixed XML doc summary in AzureBlobOperationDocumentStorage.

Copilot AI review requested due to automatic review settings January 28, 2026 09:53
@glen-84 glen-84 merged commit 7908bfb into main Jan 28, 2026
118 of 119 checks passed
@glen-84 glen-84 deleted the gai/fix-doc-comment branch January 28, 2026 10:01
@codecov
Copy link
Copy Markdown

codecov Bot commented Jan 28, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
⚠️ Please upload report for BASE (main@f07b78b). Learn more about missing BASE report.
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@          Coverage Diff           @@
##             main   #9073   +/-   ##
======================================
  Coverage        ?       0           
======================================
  Files           ?       0           
  Lines           ?       0           
  Branches        ?       0           
======================================
  Hits            ?       0           
  Misses          ?       0           
  Partials        ?       0           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR fixes an incorrect XML documentation comment in the AzureBlobOperationDocumentStorage class. The documentation incorrectly stated that the implementation uses "Redis as a storage" when it actually uses "Azure Blob Storage". This appears to be a copy-paste error from the Redis implementation.

Changes:

  • Corrected XML doc summary to accurately describe Azure Blob Storage instead of Redis

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@github-actions
Copy link
Copy Markdown
Contributor

🚀 Fusion Gateway Performance Results

Simple Composite Query

Constant Load (50 VUs)

Requests/sec Error Rate
5801.06 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.82ms 7.18ms 161.72ms 8.47ms 13.14ms 18.51ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
4546.68 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.85ms 39.31ms 317.46ms 48.72ms 107.46ms 125.73ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
      }
    }
  }
}

Deep Recursion Query

Constant Load (50 VUs)

Requests/sec Error Rate
270.37 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
12.88ms 174.65ms 675.83ms 179.32ms 224.97ms 249.32ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
304.67 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
3.10ms 685.91ms 1710.20ms 693.47ms 1395.99ms 1500.01ms

Executed Query

fragment User on User {
  id
  username
  name
}

fragment Review on Review {
  id
  body
}

fragment Product on Product {
  inStock
  name
  price
  shippingEstimate
  upc
  weight
}

query TestQuery {
  users {
    ...User
    reviews {
      ...Review
      product {
        ...Product
        reviews {
          ...Review
          author {
            ...User
            reviews {
              ...Review
              product {
                ...Product
              }
            }
          }
        }
      }
    }
  }
  topProducts(first: 5) {
    ...Product
    reviews {
      ...Review
      author {
        ...User
        reviews {
          ...Review
          product {
            ...Product
          }
        }
      }
    }
  }
}

Variable Batching Throughput

Constant Load (50 VUs)

Requests/sec Error Rate
23659.12 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 1.71ms 42.19ms 2.06ms 3.93ms 4.78ms

Ramping Load (0→50→500→50 VUs)

Requests/sec Error Rate
18744.83 req/s 0.00%
📊 Response Time Metrics
Min Med Max Avg P90 P95
0.09ms 9.33ms 133.82ms 11.35ms 23.40ms 28.24ms

Executed Query

query TestQuery_8f7a46ce_2(
  $__fusion_1_upc: ID!
  $__fusion_2_price: Long!
  $__fusion_2_weight: Long!
) {
  productByUpc(upc: $__fusion_1_upc) {
    inStock
    shippingEstimate(weight: $__fusion_2_weight, price: $__fusion_2_price)
  }
}

Variables (5 sets batched in single request)

[
  { "__fusion_1_upc": "1", "__fusion_2_price": 899, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "2", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 },
  { "__fusion_1_upc": "3", "__fusion_2_price": 15, "__fusion_2_weight": 20 },
  { "__fusion_1_upc": "4", "__fusion_2_price": 499, "__fusion_2_weight": 100 },
  { "__fusion_1_upc": "5", "__fusion_2_price": 1299, "__fusion_2_weight": 1000 }
]

No baseline data available for comparison.


Run 21433452229 • Commit 5af66af • Wed, 28 Jan 2026 10:22:29 GMT

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants