Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yma96 committed Oct 15, 2024
1 parent 5ba2807 commit 352e7e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public interface TrackingService
{
@GET
@Path( "/{id}/artifactRecord/{path: (.*)}" )
Response recordArtificat( final @PathParam( "id" ) String id, final @PathParam( "path" ) String path,
Response recordArtifact( final @PathParam( "id" ) String id, final @PathParam( "path" ) String path,
final @QueryParam( "packageType" ) String packageType,
final @QueryParam( "type" ) String type, final @QueryParam( "name" ) String name,
final @QueryParam( "originalUrl" ) String originalUrl,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public void storeTrackedDownload( JsonObject message )
boolean exception = false;
try
{
Response response = trackingService.recordArtificat( trackingId, trackingPath, storeKey.getPackageType(),
Response response = trackingService.recordArtifact( trackingId, trackingPath, storeKey.getPackageType(),
storeKey.getType().name(), storeKey.getName(),
originalUrl, entryDTO.getSize(), entryDTO.getMd5(),
entryDTO.getSha1(), entryDTO.getSha256() );
Expand Down

0 comments on commit 352e7e7

Please sign in to comment.