mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-12-22 03:33:48 +01:00
Fix compilation error caused by overlooked renames: diflouroborane -> difluoroborane
This commit is contained in:
parent
57a0436ca1
commit
06083a63e3
@ -1,5 +1,5 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "diflouroborane"
|
name = "difluoroborane"
|
||||||
version = "0.4.2"
|
version = "0.4.2"
|
||||||
authors = [ "dequbed <me@dequbed.space>"
|
authors = [ "dequbed <me@dequbed.space>"
|
||||||
, "Kai Jan Kriegel <kai@kjkriegel.de>"
|
, "Kai Jan Kriegel <kai@kjkriegel.de>"
|
||||||
|
@ -9,8 +9,8 @@ pub struct LogConfig {
|
|||||||
#[serde(default, skip_serializing_if = "Option::is_none")]
|
#[serde(default, skip_serializing_if = "Option::is_none")]
|
||||||
/// Log filter string in the tracing format `target[span{field=value}]=level`.
|
/// Log filter string in the tracing format `target[span{field=value}]=level`.
|
||||||
/// lvalue is optional and multiple filters can be combined with comma.
|
/// lvalue is optional and multiple filters can be combined with comma.
|
||||||
/// e.g. `warn,diflouroborane::actors=debug` will only print `WARN` and `ERROR` unless the
|
/// e.g. `warn,difluoroborane::actors=debug` will only print `WARN` and `ERROR` unless the
|
||||||
/// message is logged in a span below `diflouroborane::actors` (i.e. by an actor task) in
|
/// message is logged in a span below `difluoroborane::actors` (i.e. by an actor task) in
|
||||||
/// which case `DEBUG` and `INFO` will also be printed.
|
/// which case `DEBUG` and `INFO` will also be printed.
|
||||||
pub filter: Option<String>,
|
pub filter: Option<String>,
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ version: "3.8"
|
|||||||
services:
|
services:
|
||||||
bffh-a:
|
bffh-a:
|
||||||
image: registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest
|
image: registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest
|
||||||
command: ["sh", "-c", "diflouroborane -c /etc/bffh/bffh.dhall --load=/etc/bffh; diflouroborane -c /etc/bffh/bffh.dhall"]
|
command: ["sh", "-c", "difluoroborane -c /etc/bffh/bffh.dhall --load=/etc/bffh; difluoroborane -c /etc/bffh/bffh.dhall"]
|
||||||
volumes:
|
volumes:
|
||||||
# generate a sample config.toml by running "docker run registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest --print-default > examples/config.toml" from the project root. You may have to delete the ipv6 listen section.
|
# generate a sample config.toml by running "docker run registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest --print-default > examples/config.toml" from the project root. You may have to delete the ipv6 listen section.
|
||||||
- "./config_a:/etc/bffh"
|
- "./config_a:/etc/bffh"
|
||||||
@ -12,7 +12,7 @@ services:
|
|||||||
image: eclipse-mosquitto
|
image: eclipse-mosquitto
|
||||||
bffh-b:
|
bffh-b:
|
||||||
image: registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest
|
image: registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest
|
||||||
command: ["sh", "-c", "diflouroborane -c /etc/bffh/bffh.dhall --load=/etc/bffh; diflouroborane -c /etc/bffh/bffh.dhall"]
|
command: ["sh", "-c", "difluoroborane -c /etc/bffh/bffh.dhall --load=/etc/bffh; difluoroborane -c /etc/bffh/bffh.dhall"]
|
||||||
volumes:
|
volumes:
|
||||||
# generate a sample config.toml by running "docker run registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest --print-default > examples/config.toml" from the project root. You may have to delete the ipv6 listen section.
|
# generate a sample config.toml by running "docker run registry.gitlab.com/fabinfra/fabaccess/bffh:dev-latest --print-default > examples/config.toml" from the project root. You may have to delete the ipv6 listen section.
|
||||||
- "./config_b:/etc/bffh"
|
- "./config_b:/etc/bffh"
|
||||||
@ -23,4 +23,4 @@ services:
|
|||||||
|
|
||||||
test-manager:
|
test-manager:
|
||||||
image: debian
|
image: debian
|
||||||
tty: true
|
tty: true
|
||||||
|
@ -8,4 +8,4 @@ edition = "2021"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
sdk-proc = { path = "sdk_proc" }
|
sdk-proc = { path = "sdk_proc" }
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
diflouroborane = { path = "../.." }
|
difluoroborane = { path = "../.." }
|
||||||
|
Loading…
Reference in New Issue
Block a user