Skip to content

Commit 2e9dd67

Browse files
HZC-7235: rename-viridian-to-hazelcast-cloud (#1548)
chore: rename viridian to hazelcast cloud --------- Signed-off-by: atilsensalduz <[email protected]>
1 parent ef8f568 commit 2e9dd67

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

.github/workflows/markdown_link_checker.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,4 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v4
8-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
9-
with:
10-
use-quiet-mode: 'yes'
8+
- uses: ruzickap/action-my-markdown-link-checker@v1

DOCUMENTATION.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* [5.3. Enabling Redo Operation](#53-enabling-redo-operation)
4040
* [5.4. Setting Connection Timeout](#54-setting-connection-timeout)
4141
* [5.5. Enabling Client TLS/SSL](#55-enabling-client-tlsssl)
42-
* [5.6. Enabling Hazelcast Viridian Discovery](#56-enabling-hazelcast-viridian-discovery)
42+
* [5.6. Enabling Hazelcast Cloud Discovery](#56-enabling-hazelcast-cloud-discovery)
4343
* [5.7. Configuring Backup Acknowledgment](#57-configuring-backup-acknowledgment)
4444
* [5.8. External Client Public Address Discovery](#58-external-client-public-address-discovery)
4545
* [6. Client Connection Strategy](#6-client-connection-strategy)
@@ -1431,10 +1431,10 @@ authentication feature which allows the Node.js clients also to have their priva
14311431
to have their certificate authorities so that the members can know which clients they can trust. See the
14321432
[Mutual Authentication section](#913-mutual-authentication).
14331433

1434-
## 5.6. Enabling Hazelcast Viridian Discovery
1434+
## 5.6. Enabling Hazelcast Cloud Discovery
14351435

14361436
Hazelcast Node.js client can discover and connect to Hazelcast clusters running on
1437-
[Hazelcast Viridian](https://viridian.hazelcast.com/). For this, provide authentication information as `clusterName` and enable cloud
1437+
[Hazelcast Cloud](https://cloud.hazelcast.com/). For this, provide authentication information as `clusterName` and enable cloud
14381438
discovery by setting your `discoveryToken` as shown below.
14391439

14401440
```javascript

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ Refer to [the documentation](DOCUMENTATION.md) to learn more about supported con
138138
* Cluster-wide unique ID generator, called **FlakeIdGenerator**
139139
* Distributed, CRDT based counter, called **PNCounter**
140140
* Distributed concurrency primitives from CP Subsystem such as **FencedLock**, **Semaphore**, **AtomicLong**
141-
* Integration with [Hazelcast Viridian](https://viridian.hazelcast.com/)
141+
* Integration with [Hazelcast Cloud](https://cloud.hazelcast.com/)
142142
* Support for serverless and traditional web service architectures with **Unisocket** and **Smart** operation modes
143143
* Ability to listen client lifecycle, cluster state and distributed data structure events
144144
* and [many more](https://hazelcast.com/clients/node-js/#client-features).

src/config/Config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ const DEFAULT_PROPERTIES: Properties = {
181181
'hazelcast.client.schema.max.put.retry.count': 100,
182182
'hazelcast.client.invocation.timeout.millis': 120000,
183183
'hazelcast.client.internal.clean.resources.millis': 100,
184-
'hazelcast.client.cloud.url': 'https://api.viridian.hazelcast.com',
184+
'hazelcast.client.cloud.url': 'https://api.cloud.hazelcast.com',
185185
/**
186186
* `hazelcast.client.statistics.enabled` and `hazelcast.client.period.seconds` are
187187
* @deprecated since 5.1

src/discovery/HazelcastCloudDiscovery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {HazelcastError} from '../core';
2626

2727
/**
2828
* Discovery service that discovers nodes via hazelcast.cloud
29-
* https://api.viridian.hazelcast.com/cluster/discovery?token=<TOKEN>
29+
* https://api.cloud.hazelcast.com/cluster/discovery?token=<TOKEN>
3030
* @internal
3131
*/
3232
export class HazelcastCloudDiscovery {

test/unit/discovery/HazelcastCloudConfigTest.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('HazelcastClientCloudConfigTest', function () {
2727

2828
const urlEndpoint = HazelcastCloudDiscovery.createUrlEndpoint(config.properties, token);
2929

30-
expect(urlEndpoint).to.be.equal('https://api.viridian.hazelcast.com/cluster/discovery?token=TOKEN');
30+
expect(urlEndpoint).to.be.equal('https://api.cloud.hazelcast.com/cluster/discovery?token=TOKEN');
3131
});
3232

3333
it('customCloudUrlEndpoint', function () {

0 commit comments

Comments
 (0)