Skip to content

Commit

Permalink
Akki env vars (#80)
Browse files Browse the repository at this point in the history
* cluster log update

* increasing the lenght of ENV column
  • Loading branch information
ankicabarisic authored May 22, 2024
1 parent 256f18e commit fd9402e
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 @@ -70,7 +70,7 @@ public class Cluster {
@JsonProperty("status")
private String status = "defined";

@Column(name = "ENV")
@Column(name = "ENV", columnDefinition = "text", length = 65535)
@JsonProperty("env-var-script")
private String envVars;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public boolean defineCluster(String sessionId, ClusterDefinition clusterDefiniti
if (!paGatewayService.isConnectionActive(sessionId)) {
throw new NotConnectedException();
}
Validate.notNull(clusterDefinition, "The received Byon node definition is empty. Nothing to be defined.");
Validate.notNull(clusterDefinition, "The received Cluster definition is empty. Nothing to be defined.");
LOGGER.info("defineCluster endpoint is called to define the cluster: " + clusterDefinition.getName());

// TODO:
Expand Down

0 comments on commit fd9402e

Please sign in to comment.