Skip to content
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

Open
wants to merge 27 commits into
base: main
Choose a base branch
from
Open

fix(express): get route #1

wants to merge 27 commits into from

Conversation

DmytryS
Copy link
Collaborator

@DmytryS DmytryS commented Nov 20, 2024

Which problem is this PR solving?

Short description of the changes

opentelemetrybot and others added 26 commits January 14, 2025 12:47
… package dependency with caret (`^`) version to sync with other instrumentation packages (open-telemetry#2664)

Refs: open-telemetry#2599 (similar work)
}
rootConnection = createConnection({
port,
user: 'root',

Check failure

Code scanning / CodeQL

Hard-coded credentials Critical test

The hard-coded value "root" is used as
user name
.
}
rootConnection = await createConnection({
port,
user: 'root',

Check failure

Code scanning / CodeQL

Hard-coded credentials Critical test

The hard-coded value "root" is used as
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

The hard-coded value "postgres" is used as
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

The hard-coded value "postgres" is used as
password
.
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.