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 25073fd commit 06dcbd1Copy full SHA for 06dcbd1
src/Orch/OrchSiteProvider.php
@@ -134,7 +134,7 @@ public function getClusterConfig(OrchCluster $cluster): array
134
$clusterConfig = $this->cache->get($cacheKey, function (ItemInterface $item) use ($cluster) {
135
$item->expiresAfter(60 * 5); // 5 minute cache time.
136
137
- $response = $cluster->getClient()->get("/cluster/configuration");
+ $response = $cluster->getClient()->get("/cluster/configuration?refreshConfig=false");
138
return $response->getBody()["configuration"] ?? [];
139
});
140
return $clusterConfig;
0 commit comments