Skip to content

Commit

Permalink
Merge pull request #464 from NilFoundation/fix-otel-semconv
Browse files Browse the repository at this point in the history
[otel] fix semconv version
  • Loading branch information
olegrok authored Mar 4, 2025
2 parents 6dfe558 + c6416ec commit e75b2fa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nil/internal/telemetry/internal/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package internal

import (
"go.opentelemetry.io/otel/sdk/resource"
semconv "go.opentelemetry.io/otel/semconv/v1.27.0"
semconv "go.opentelemetry.io/otel/semconv/v1.26.0" // Be sure otelcol support it before update
)

func NewResource(config *Config) (*resource.Resource, error) {
Expand Down
2 changes: 1 addition & 1 deletion nix/nil.nix
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ buildGo124Module rec {
];

# to obtain run `nix build` with vendorHash = "";
vendorHash = "sha256-Cqkos2JACh9qV+cFSUanOQ/JHzbftlvUfHXoRZ2VbQQ=";
vendorHash = "sha256-b3yEYGngHgencOGoptOD41aBlK2OdVo4Z7LtYCkutd0=";
hardeningDisable = [ "all" ];

postInstall = ''
Expand Down

0 comments on commit e75b2fa

Please sign in to comment.