Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
ankicabarisic committed May 30, 2024
2 parents 6570793 + 8da6701 commit e3a119b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
version=13.1.0-SNAPSHOT
#Tue, 28 May 2024 12:38:44 +0000
version=14.1.0-SNAPSHOT
projectName=scheduling-abstraction-layer
packageLastPartName=scheduling-abstraction-layer
packageLastPartName=scheduling-abstraction-layer
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 e3a119b

Please sign in to comment.