Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/happy-wasps-vanish.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'hive-apollo-router-plugin': patch
---

fix tmp dir filename
2 changes: 1 addition & 1 deletion packages/libraries/router/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ impl HiveRegistry {
// It also enables hot-reloading to makes sure Apollo Router watches the file.
let file_name = config.schema_file_path.unwrap_or(
env::temp_dir()
.with_file_name("supergraph-schema.graphql")
.join("supergraph-schema.graphql")
.to_string_lossy()
.to_string(),
);
Expand Down