Skip to content

Commit 9b4eb35

Browse files
author
Paul C
committed
fix: plugin store and heartbeat URLs — wolfstack.org not wolfscale.org
1 parent 80de69c commit 9b4eb35

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wolfstack"
3-
version = "16.16.5"
3+
version = "16.16.6"
44
edition = "2024"
55
authors = ["Wolf Software Systems Ltd"]
66
description = "Server management platform for the Wolf software suite"

src/api/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14893,7 +14893,7 @@ pub async fn plugins_reload(req: HttpRequest, state: web::Data<AppState>) -> Htt
1489314893
HttpResponse::Ok().json(serde_json::json!({ "message": "Plugins reloaded" }))
1489414894
}
1489514895

14896-
const PLUGIN_INDEX_URL: &str = "https://wolfscale.org/pkg/index.json";
14896+
const PLUGIN_INDEX_URL: &str = "https://wolfstack.org/pkg/index.json";
1489714897

1489814898
/// GET /api/plugins/store — fetch available plugins from the plugin store (Enterprise only)
1489914899
pub async fn plugins_store(req: HttpRequest, state: web::Data<AppState>) -> HttpResponse {

src/compat/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ pub async fn report_license_heartbeat(cluster: &crate::agent::ClusterState) {
197197
.danger_accept_invalid_certs(true)
198198
.build()
199199
.unwrap_or_default()
200-
.post("https://wolfscale.org/adminsys/heartbeat.php")
200+
.post("https://wolfstack.org/adminsys/heartbeat.php")
201201
.json(&payload)
202202
.send()
203203
.await;

0 commit comments

Comments
 (0)