Skip to content

Commit

Permalink
Merge pull request #5 from djw8605/main
Browse files Browse the repository at this point in the history
Use the xrd-stash alias
  • Loading branch information
CannonLock authored Jan 10, 2025
2 parents d3950ec + c11b0d7 commit f462a6a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pages/api/cacheByClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default async function handler(req, res) {
try {
result = await client.transport.request({
method: 'POST',
path: '/q/xrd-stash*/_search',
path: '/q/xrd-stash/_search',
body: {
"query": {
"bool": {
Expand Down
2 changes: 1 addition & 1 deletion pages/api/cacheUsage.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default async function handler(req, res) {
try {
result = await client.transport.request({
method: 'POST',
path: '/q/xrd-stash*/_search',
path: '/q/xrd-stash/_search',
body: {
"query": {
"bool": {
Expand Down
4 changes: 2 additions & 2 deletions pages/api/gatherStats.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ async function getDataRead(callback) {
try {
result = await client.transport.request({
method: 'POST',
path: '/q/xrd-stash*/_search',
path: '/q/xrd-stash/_search',
body: {
"query": {
"bool": {
Expand Down Expand Up @@ -58,7 +58,7 @@ async function getFilesRead(callback) {
try {
resultCount = await client.transport.request({
method: 'POST',
path: '/q/xrd-stash*/_count',
path: '/q/xrd-stash/_count',
body: {
"query": {
"bool": {
Expand Down
2 changes: 1 addition & 1 deletion pages/api/perProjectUsage.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default async function handler(req, res) {
try {
result = await client.transport.request({
method: 'POST',
path: '/q/xrd-stash*/_search',
path: '/q/xrd-stash/_search',
body: {
"query": {
"bool": {
Expand Down

0 comments on commit f462a6a

Please sign in to comment.