mirror of
https://github.com/hoppscotch/hoppscotch.git
synced 2026-04-25 16:55:59 +03:00
[GH-ISSUE #5574] [bug]: Failed to get Collections on Self-Hosted Web App #2153
Labels
No labels
CodeDay
a11y
browser limited
bug
bug fix
cli
core
critical
design
desktop
discussion
docker
documentation
duplicate
enterprise
feature
feature
fosshack
future
good first issue
hacktoberfest
help wanted
i18n
invalid
major
minor
need information
need testing
not applicable to hoppscotch
not reproducible
pull-request
question
refactor
resolved
sandbox
self-host
spam
stale
testmu
wip
wont fix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hoppscotch#2153
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @caturbgs on GitHub (Nov 12, 2025).
Original GitHub issue: https://github.com/hoppscotch/hoppscotch/issues/5574
Originally assigned to: @nivedin on GitHub.
Is there an existing issue for this?
Platform
Web App
Browser
Firefox
Operating System
macOS
Bug Description
Deployment Type
Self-hosted (on-prem deployment)
Version
2025.10.0
@nivedin commented on GitHub (Nov 12, 2025):
https://github.com/hoppscotch/hoppscotch/issues/5541#issuecomment-3521248282
Thank you for the information, can you check the response of the graphql call while expanding
@jimmybrancaccio commented on GitHub (Nov 12, 2025):
tl;dr
Make sure you haven't got any migrations which need to be applied. You can run
pnpm dlx prisma migrate deployto apply migrations.--
I was experiencing this issue so I checked the logs of my
hoppscotch_backendcontainer. What I saw was:This made me realize that it sounded like there were some migrations to run. Checking the docs led me to this section. I
exec'dinto the backend container and ranpnpm dlx prisma migrate deploy:After clearing my web browsers cache and reloading the page I could see all the requests within my various collections again.
@Symefa commented on GitHub (Nov 13, 2025):
Hi, I am @caturbgs co-worker, the answer provided by @jimmybrancaccio was spot on, our issue has been resolved.
running the command, we observed 50% memory spike during migrating
Here is the output of the command:
Thank you, the issue has been resolved.
@caturbgs commented on GitHub (Nov 13, 2025):
Turns out this was because the migration, thank you @jimmybrancaccio for the suggestion.
I'll close this issue
@jamesgeorge007 commented on GitHub (Nov 13, 2025):
Glad this is resolved!
For future upgrades, we recommend checking the release notes before updating your self-hosted instance. They include important upgrade instructions and breaking changes.
For instance, the v2025.10.0 release notes had a mention about the DB migrations.