-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(express): get route #1
base: main
Are you sure you want to change the base?
Conversation
aabcde2
to
82fc245
Compare
82fc245
to
350850a
Compare
…ry#2633) Co-authored-by: Marc Pichler <[email protected]>
Co-authored-by: Marc Pichler <[email protected]>
… package dependency with caret (`^`) version to sync with other instrumentation packages (open-telemetry#2664) Refs: open-telemetry#2599 (similar work)
…ons incubating entry-point (open-telemetry#2670)
) Co-authored-by: Trent Mick <[email protected]>
Co-authored-by: opentelemetrybot <[email protected]>
…ng only promise API (open-telemetry#2662)
…pen-telemetry#2654) Co-authored-by: Marc Pichler <[email protected]>
…mples (open-telemetry#2655) Co-authored-by: David Luna <[email protected]> Co-authored-by: Marc Pichler <[email protected]>
…on (open-telemetry#2661) Co-authored-by: Marc Pichler <[email protected]>
…emetry#2675) Co-authored-by: Marc Pichler <[email protected]>
} | ||
rootConnection = createConnection({ | ||
port, | ||
user: 'root', |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
user name
} | ||
rootConnection = await createConnection({ | ||
port, | ||
user: 'root', |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
user name
import { PgInstrumentation } from '../../build/src/index.js'; | ||
|
||
const CONFIG = { | ||
user: process.env.POSTGRES_USER || 'postgres', |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
user name
|
||
const CONFIG = { | ||
user: process.env.POSTGRES_USER || 'postgres', | ||
password: process.env.POSTGRES_PASSWORD || 'postgres', |
Check failure
Code scanning / CodeQL
Hard-coded credentials Critical test
Which problem is this PR solving?
Short description of the changes