Skip to content

Commit 8b68962

Browse files
authored
Use focus develop or main without features
1 parent 85fdb39 commit 8b68962

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/modules/bbmri.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ impl Module for Bbmri {
3131
if bbmri_conf.eric {
3232
if let Environment::Acceptance = conf.environment {
3333
service_map
34-
.install_with_config::<Focus<EricAcc, Blaze<Self>>>("develop-bbmri".into());
34+
.install_with_config::<Focus<EricAcc, Blaze<Self>>>("develop".into());
3535
} else {
36-
service_map.install_with_config::<Focus<Eric, Blaze<Self>>>("main-bbmri".into());
36+
service_map.install_with_config::<Focus<Eric, Blaze<Self>>>("main".into());
3737
}
3838
}
3939
if bbmri_conf.gbn {
40-
service_map.install_with_config::<Focus<Gbn, Blaze<Self>>>("main-bbmri".into());
40+
service_map.install_with_config::<Focus<Gbn, Blaze<Self>>>("main".into());
4141
}
4242
if let Some(ds_conf) = &bbmri_conf.directory_sync {
4343
service_map.install_with_config::<crate::services::DirectorySync<Self>>(ds_conf);

0 commit comments

Comments
 (0)