Fluct Bid Adapter: Correct bid endpoint URL#14696
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Fluct bidder adapter’s request URL to use the corrected endpoint path by adding a trailing slash.
Changes:
- Updated
END_POINTfromhttps://hb.adingo.jp/prebidtohttps://hb.adingo.jp/prebid/to match the corrected endpoint path.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| const BIDDER_CODE = 'fluct'; | ||
| const END_POINT = 'https://hb.adingo.jp/prebid'; | ||
| const END_POINT = 'https://hb.adingo.jp/prebid/'; |
There was a problem hiding this comment.
This change updates END_POINT to include a trailing slash, which changes the built request URL to https://hb.adingo.jp/prebid/?.... There is an existing unit test in test/spec/modules/fluctBidAdapter_spec.js that currently asserts the old URL without the slash, so the test suite will fail unless it’s updated to match the new endpoint format.
Coverage Report for CI Build 24225975702Coverage decreased (-0.001%) to 96.343%Details
Uncovered ChangesNo uncovered changes found. Coverage Regressions2 previously-covered lines in 1 file lost coverage.
Coverage Stats💛 - Coveralls |
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Type of change
Bugfix
Feature
New bidder adapter
Updated bidder adapter
Code style update (formatting, local variables)
Refactoring (no functional changes, no api changes)
Build related changes
CI related changes
Does this change affect user-facing APIs or examples documented on http://prebid.org?
Other
Description of change
Fluct endpoint path correction (
/prebid→/prebid/)Other information