diff --git a/go.mod b/go.mod index abd21440e..d88248628 100644 --- a/go.mod +++ b/go.mod @@ -21,7 +21,7 @@ require ( github.com/hashicorp/vault/api v1.23.0 github.com/hashicorp/vault/api/auth/kubernetes v0.12.0 github.com/hellofresh/health-go/v5 v5.5.5 - github.com/jackc/pgx/v5 v5.9.2 + github.com/jackc/pgx/v5 v5.10.0 github.com/jmoiron/sqlx v1.4.0 github.com/jolestar/go-commons-pool/v2 v2.1.2 github.com/makasim/amqpextra v1.2.1 diff --git a/go.sum b/go.sum index 1c5d40565..21632862f 100644 --- a/go.sum +++ b/go.sum @@ -151,8 +151,8 @@ github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsI github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 h1:iCEnooe7UlwOQYpKFhBabPMi4aNAfoODPEFNiAnClxo= github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= -github.com/jackc/pgx/v5 v5.9.2 h1:3ZhOzMWnR4yJ+RW1XImIPsD1aNSz4T4fyP7zlQb56hw= -github.com/jackc/pgx/v5 v5.9.2/go.mod h1:mal1tBGAFfLHvZzaYh77YS/eC6IX9OWbRV1QIIM0Jn4= +github.com/jackc/pgx/v5 v5.10.0 h1:VhSvgU2jSli8o3AqIEOTJr7rZwAEUVo4E4XhR94Zfr0= +github.com/jackc/pgx/v5 v5.10.0/go.mod h1:mal1tBGAFfLHvZzaYh77YS/eC6IX9OWbRV1QIIM0Jn4= github.com/jackc/puddle/v2 v2.2.2 h1:PR8nw+E/1w0GLuRFSmiioY6UooMp6KJv0/61nB7icHo= github.com/jackc/puddle/v2 v2.2.2/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= github.com/jmoiron/sqlx v1.4.0 h1:1PLqN7S1UYp5t4SrVVnt4nUVNemrDAtxlulVe+Qgm3o= diff --git a/o11y/wrappers/o11ygin/o11ygin_test.go b/o11y/wrappers/o11ygin/o11ygin_test.go index 0d58fc304..37deeb7a4 100644 --- a/o11y/wrappers/o11ygin/o11ygin_test.go +++ b/o11y/wrappers/o11ygin/o11ygin_test.go @@ -416,7 +416,6 @@ func TestClientCancelled(t *testing.T) { { Metric: "timer", Name: "handler", - Value: 100.344581, Tags: []string{ "http.server_name:test-server", "http.method:GET", @@ -425,7 +424,7 @@ func TestClientCancelled(t *testing.T) { }, Rate: 1, }, - }, m.Calls(), fakemetrics.CMPMetrics)) + }, m.Calls(), fakemetrics.CMPMetrics, cmpopts.IgnoreFields(fakemetrics.MetricCall{}, "Value"))) }) }