Catch failed references index request (#18274)

GitOrigin-RevId: 96063835056a39d85a57a77c0c7f71ce8243e6b9
This commit is contained in:
Alf Eaton 2024-05-16 09:28:38 +01:00 committed by Copybot
parent 9d6754f546
commit e8a5f8f056

View file

@ -19,6 +19,7 @@ import { ReactScopeValueStore } from '@/features/ide-react/scope-value-store/rea
import { useFileTreeData } from '@/shared/context/file-tree-data-context'
import { findDocEntityById } from '@/features/ide-react/util/find-doc-entity-by-id'
import { IdeEvents } from '@/features/ide-react/create-ide-event-emitter'
import { debugConsole } from '@/utils/debugging'
type References = {
keys: string[]
@ -74,9 +75,14 @@ export const ReferencesProvider: FC = ({ children }) => {
body: {
shouldBroadcast,
},
}).then((response: IndexReferencesResponse) => {
storeReferencesKeys(response.keys, true)
})
.then((response: IndexReferencesResponse) => {
storeReferencesKeys(response.keys, true)
})
.catch(error => {
// allow the request to fail
debugConsole.error(error)
})
},
[projectId, storeReferencesKeys]
)