Skip to content

Commit

Permalink
Ignore backgroundJob exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Senorsen committed Mar 17, 2021
1 parent d9a4d5c commit db0fd12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

ext {
pluginVersion = "1.2.4"
pluginVersion = "1.2.5"
teamcityVersion = findProperty("teamcityVersion") ?: "2019.1"
def correctVersion = project.hasProperty('pluginVersion') && property('pluginVersion') ==~ /\d+\.\d+\.\d+.*/
versionNumber = correctVersion ? property('pluginVersion') : 'SNAPSHOT-' + new Date().format('yyyyMMddHHmmss')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ class NeteaseCloudClient(
!workloadIds.contains(it.workloadId)
}
} catch (e: Exception) {
lastError = CloudErrorInfo("backgroudJob", responseString, e)
// lastError = CloudErrorInfo("backgroudJob", responseString, e)
logger.error("backgroundJob", e)
}
}
}
Expand Down

0 comments on commit db0fd12

Please sign in to comment.