Skip to content

Commit

Permalink
remove as const
Browse files Browse the repository at this point in the history
  • Loading branch information
garysassano committed Jan 21, 2025
1 parent feb4552 commit 90ec5c1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ export const ATTR_FAAS_NAME = 'faas.name';
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_FAAS_INSTANCE = 'faas.instance' as const;
export const ATTR_FAAS_INSTANCE = 'faas.instance';

/**
* The amount of memory available to the serverless function converted to Bytes.
Expand All @@ -230,7 +230,7 @@ export const ATTR_FAAS_INSTANCE = 'faas.instance' as const;
*
* @experimental This attribute is experimental and is subject to breaking changes in minor releases of `@opentelemetry/semantic-conventions`.
*/
export const ATTR_FAAS_MAX_MEMORY = 'faas.max_memory' as const;
export const ATTR_FAAS_MAX_MEMORY = 'faas.max_memory';

/**
* The immutable version of the function being executed.
Expand Down

0 comments on commit 90ec5c1

Please sign in to comment.