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 03dc322 commit a427582Copy full SHA for a427582
apps/insights/src/cache.ts
@@ -11,8 +11,8 @@ const transformer = {
11
12
/**
13
* - API routes will be cached for 1 hour
14
- * - Cached function will be cached for 10 minutes,
15
- * If the function is called within 1 hour, it will
+ * - Cached function will be cached for 10 minutes,
+ * If the function is called within 1 hour, it will
16
* still be served from the cache, but also fetch the latest data
17
*/
18
export const DEFAULT_NEXT_FETCH_TTL = 3600; // 1 hour
apps/insights/src/services/pyth/get-metadata.ts
@@ -2,4 +2,4 @@ import { clients, Cluster } from ".";
2
3
export const getPythMetadata = async (cluster: Cluster) => {
4
return clients[cluster].getData();
5
-};
+};
0 commit comments