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