Skip to content

Commit ae866ea

Browse files
committed
remove updating deployment status
1 parent 282ef94 commit ae866ea

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/com/faforever/api/deployment/GitHubDeploymentService.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,10 +98,10 @@ private void performDeployment(GHDeployment ghDeployment, GHRepository repositor
9898

9999
@SneakyThrows
100100
private void updateDeploymentStatus(long deploymentId, GHRepository repository, GHDeploymentState state, String description) {
101-
log.debug("Updating deployment status to '{}' with description: {}", state, description);
102-
repository.getDeployment(deploymentId)
103-
.createStatus(state)
104-
.description(description)
105-
.create();
101+
// log.debug("Updating deployment status to '{}' with description: {}", state, description);
102+
// repository.getDeployment(deploymentId)
103+
// .createStatus(state)
104+
// .description(description)
105+
// .create();
106106
}
107107
}

0 commit comments

Comments
 (0)