Skip to content

Commit d16e407

Browse files
committed
fix(bolt): update opengb -> backend env var name
1 parent c7826c5 commit d16e407

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

fern/definition/cloud/__package__.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ types:
3737
main: string
3838
cdn: string
3939
job: string
40+
# TODO: This is the legacy name, but changing this MIGHT break CLI 1.0
41+
# clients. Need to check this.
4042
opengb: optional<string>
4143

4244
BootstrapOrigins:

lib/bolt/core/src/context/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ impl ServiceContextData {
902902
let opengb_output = terraform::output::read_opengb(&project_ctx).await;
903903

904904
env.insert(
905-
"CLOUDFLARE_OPENGB_DISPATCHER_NAMESPACE".into(),
905+
"CLOUDFLARE_BACKEND_DISPATCHER_NAMESPACE".into(),
906906
opengb_output.dispatcher_namespace_name.to_string(),
907907
);
908908
}

sdks/full/typescript/archive.tgz

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdks/runtime/typescript/archive.tgz

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

svc/api/games/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use api_helper::start;
22

33
fn main() {
4-
start(api_servers::route::handle);
4+
start(api_games::route::handle);
55
}

0 commit comments

Comments
 (0)