Compare commits
2 commits
32fb92fb8d
...
efc0dfdb6f
Author | SHA1 | Date | |
---|---|---|---|
efc0dfdb6f | |||
f038ab508b |
2 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
# ./cargo/config
|
# ./cargo/config.toml
|
||||||
[target.x86_64-unknown-linux-gnu]
|
[target.x86_64-unknown-linux-gnu]
|
||||||
linker = "/usr/bin/clang-16"
|
linker = "/usr/bin/clang-16"
|
||||||
rustflags = [
|
rustflags = [
|
||||||
|
|
|
@ -22,7 +22,11 @@ impl Handler<actor::messages::CloneRepo> for actor::RepoActor {
|
||||||
if self.repo_details.repo_config.is_none() {
|
if self.repo_details.repo_config.is_none() {
|
||||||
tracing::debug!("Handler: CloneRepo: Sending: LoadConfigFromRepo");
|
tracing::debug!("Handler: CloneRepo: Sending: LoadConfigFromRepo");
|
||||||
actor::logger(&self.log, "send: LoadConfigFromRepo");
|
actor::logger(&self.log, "send: LoadConfigFromRepo");
|
||||||
ctx.address().do_send(actor::messages::LoadConfigFromRepo);
|
actor::do_send(
|
||||||
|
ctx.address(),
|
||||||
|
actor::messages::LoadConfigFromRepo,
|
||||||
|
&self.log,
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
tracing::debug!("Handler: CloneRepo: Sending: ValidateRepo");
|
tracing::debug!("Handler: CloneRepo: Sending: ValidateRepo");
|
||||||
actor::logger(&self.log, "send: ValidateRepo");
|
actor::logger(&self.log, "send: ValidateRepo");
|
||||||
|
|
Loading…
Reference in a new issue