You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello ! Great tool, helped me migrate several repos when my company stopped the internal GitLab instaance.
First several migrations were fine, but when migrating the last (largest) repo with around 2500 issues and many more attachments, I ran into an issue where all files/images would show like this:
(Blacked the file name)
It was strange, because using the same session cookie, I was able to migrate images in other, test, repos.
So, I suspected either a file size issue or a file count limit.
Searching the code and internet, ran into this, which helped me resolve the issue:
As far as I can tell there's no down side for this change. Wanted to open this issue to manily document my problem and how I solved it in case someone else runs into this
The text was updated successfully, but these errors were encountered:
bijelicaleksandar
changed the title
ENHANCEMENT: Migrating repos with a lot of issues and attachments
Bug: Migrating repos with a lot of issues and attachments corrupts attachments on upload to s3
Apr 25, 2024
Hello ! Great tool, helped me migrate several repos when my company stopped the internal GitLab instaance.
First several migrations were fine, but when migrating the last (largest) repo with around 2500 issues and many more attachments, I ran into an issue where all files/images would show like this:
(Blacked the file name)
It was strange, because using the same session cookie, I was able to migrate images in other, test, repos.
So, I suspected either a file size issue or a file count limit.
Searching the code and internet, ran into this, which helped me resolve the issue:
https://stackoverflow.com/questions/58655532/increasing-maxcontentlength-and-maxbodylength-in-axios
Modified the src/githubHelper.ts file, the following section:
The two lines added were:
After this it worked.
As far as I can tell there's no down side for this change. Wanted to open this issue to manily document my problem and how I solved it in case someone else runs into this
The text was updated successfully, but these errors were encountered: