Skip to content

Commit 87a4279

Browse files
committed
fix: do not show token
1 parent 40b6239 commit 87a4279

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
9+
### Fix
10+
11+
- Do not show authorization_token
912

1013
## [0.3.1]
1114

src/register.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub fn sha<Q: ObjectType + 'static, M: ObjectType + 'static, S: SubscriptionType
3232
/// * `variant` - The name of the graph variant to register the schema to. The default value is current.
3333
/// * `user_version` - An arbitrary string you can set to distinguish data sent by different versions of your edge server. For example, this can be the SHA of the Git commit for your deployed server code. We plan to make this value visible in Apollo Studio.
3434
/// * `platform` - The infrastructure environment that your edge server is running in (localhost, kubernetes/deployment, aws lambda, google cloud run, google cloud function, AWS ECS, etc.)
35-
#[instrument(err, skip(schema))]
35+
#[instrument(err, skip(authorization_token, schema))]
3636
pub async fn register<
3737
Q: ObjectType + 'static,
3838
M: ObjectType + 'static,

0 commit comments

Comments
 (0)