Skip to content

Commit

Permalink
Remove log info
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Di Tommaso <[email protected]>
  • Loading branch information
pditommaso committed May 31, 2024
1 parent 25fde9b commit cc27783
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import io.micronaut.http.client.exceptions.HttpClientResponseException
import io.micronaut.runtime.event.ApplicationStartupEvent
import io.micronaut.runtime.event.annotation.EventListener
import io.seqera.wave.core.ContainerDigestPair
import io.seqera.wave.service.builder.BuildRequest
import io.seqera.wave.service.persistence.PersistenceService
import io.seqera.wave.service.persistence.WaveBuildRecord
import io.seqera.wave.service.persistence.WaveContainerRecord
Expand Down Expand Up @@ -112,7 +111,6 @@ class SurrealPersistenceService implements PersistenceService {
throw new IllegalArgumentException("Missing 'buildId' argument")
final query = "select * from wave_build where buildId = '$buildId'"
final json = surrealDb.sqlAsString(getAuthorization(), query)
log.info("Build request with buildId '$buildId' loaded: ${json}")
final type = new TypeReference<ArrayList<SurrealResult<WaveBuildRecord>>>() {}
final data= json ? JacksonHelper.fromJson(json, type) : null
final result = data && data[0].result ? data[0].result[0] : null
Expand Down

0 comments on commit cc27783

Please sign in to comment.