Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation about troubleshooting the submission/storage process #1919

Merged
merged 2 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions documentation/server_maintenance/storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@ resource_ids.each do |res_id|
end
```

Alternatively, you may sometimes complete a submission by getting a copy of the RepoQueueState object and forcing it to complete.
```
r=StashEngine::RepoQueueState.find(<id_num>)
r.possibly_set_as_completed
```


Async download check
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion documentation/submission_flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Basic Dryad Submission Flow
* Accept license
4. Submission
* Update metadata with DataCite for the submitted item
* Submits to the storage system in a background process
* Submits to the storage system in a background process -- See [storage details](server_maintenance/storage.md)
* Package sent contains manifest (for URLs) or zip file with metadata files and data files
* Mrt-datacite.xml, mrt-dataone-manifest.txt, mrt-embargo.txt, mrt-oaidc.xml, stash-wrapper.xml
5. Notifying of completion
Expand Down