SubjectGalleryProgress returns the NATS subject for gallery download progress.
(opID string)
| 61 | |
| 62 | // SubjectGalleryProgress returns the NATS subject for gallery download progress. |
| 63 | func SubjectGalleryProgress(opID string) string { |
| 64 | return subjectGalleryPrefix + sanitizeSubjectToken(opID) + ".progress" |
| 65 | } |
| 66 | |
| 67 | // SubjectStagingProgress returns the NATS subject a frontend replica publishes |
| 68 | // file-staging progress on. Staging progress is otherwise per-process state |
no test coverage detected