We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aafb8ae commit 9c62dcbCopy full SHA for 9c62dcb
.changeset/happy-wasps-vanish.md
@@ -0,0 +1,5 @@
1
+---
2
+'hive-apollo-router-plugin': patch
3
4
+
5
+fix tmp dir filename
packages/libraries/router/src/registry.rs
@@ -124,7 +124,7 @@ impl HiveRegistry {
124
// It also enables hot-reloading to makes sure Apollo Router watches the file.
125
let file_name = config.schema_file_path.unwrap_or(
126
env::temp_dir()
127
- .with_file_name("supergraph-schema.graphql")
+ .join("supergraph-schema.graphql")
128
.to_string_lossy()
129
.to_string(),
130
);
0 commit comments