fix(cloudly-client): correct Cloudly request handling for cluster config, cluster updates, and image pushes

This commit is contained in:
2026-05-08 11:15:11 +00:00
parent a1b1234aac
commit 080d163591
5 changed files with 17 additions and 6 deletions
+2 -1
View File
@@ -61,8 +61,9 @@ export class Cluster implements plugins.servezoneInterfaces.data.ICluster {
);
const response = await updateClusterTR.fire({
identity: this.cloudlyClientRef.identity,
clusterId: this.id,
clusterData: this.data,
});
} as any);
const resultClusterData = response.resultCluster.data;
plugins.smartexpect.expect(resultClusterData).toEqual(this.data);