-
Notifications
You must be signed in to change notification settings - Fork 314
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
Add the Double Open Server (DOS) client and package configuration provider #8770
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #8770 +/- ##
=========================================
Coverage 67.79% 67.79%
- Complexity 1164 1166 +2
=========================================
Files 243 243
Lines 7711 7711
Branches 861 861
=========================================
Hits 5228 5228
Misses 2127 2127
Partials 356 356
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
dbc4456
to
acd3a20
Compare
plugins/package-configuration-providers/dos/src/main/kotlin/DosPackageConfigurationProvider.kt
Outdated
Show resolved
Hide resolved
plugins/package-configuration-providers/dos/src/main/kotlin/DosPackageConfigurationProvider.kt
Show resolved
Hide resolved
plugins/package-configuration-providers/dos/src/main/kotlin/DosPackageConfigurationProvider.kt
Outdated
Show resolved
Hide resolved
plugins/package-configuration-providers/dos/src/main/kotlin/DosPackageConfigurationProvider.kt
Show resolved
Hide resolved
plugins/package-configuration-providers/dos/src/main/kotlin/DosPackageConfigurationProvider.kt
Outdated
Show resolved
Hide resolved
acd3a20
to
0d0d7ab
Compare
plugins/package-configuration-providers/dos/src/main/kotlin/DosPackageConfigurationProvider.kt
Outdated
Show resolved
Hide resolved
0d0d7ab
to
7e641ee
Compare
a686d53
to
0d81279
Compare
This client library project provides the base for communicating with the DOS package configuration provider and DOS scanner wrapper. Signed-off-by: Sebastian Schuberth <[email protected]>
0d81279
to
0a708d2
Compare
Signed-off-by: Sebastian Schuberth <[email protected]>
0a708d2
to
82c72fa
Compare
*/ | ||
suspend fun getUploadUrl(key: String): String? { | ||
if (key.isEmpty()) { | ||
logger.error { "Need the name of the zipped packet to upload" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is packet
correct?
Missing trailing dot.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll fix these in a follow-up, thanks.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See #8789.
*/ | ||
suspend fun getScanJobState(id: String): JobStateResponseBody? { | ||
if (id.isEmpty()) { | ||
logger.error { "Need the job ID to check for job state" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing trailing dot.
The DOS scanner wrapper will be contributed as a follow-up.