From 2799bbe7aac927d4ac20d7f32d5d57ef9ae7747f Mon Sep 17 00:00:00 2001 From: Benjamin Arntzen Date: Tue, 19 Mar 2024 01:34:54 +0000 Subject: [PATCH] Fix mediator addresses --- ops/systemd/job-creator.service | 2 +- ops/systemd/resource-provider-gpu.service | 2 +- ops/systemd/resource-provider.service | 2 +- pkg/options/services.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ops/systemd/job-creator.service b/ops/systemd/job-creator.service index ecb48bbf..bc9bb1ff 100644 --- a/ops/systemd/job-creator.service +++ b/ops/systemd/job-creator.service @@ -9,7 +9,7 @@ Environment="LOG_LEVEL=debug" Environment="HOME=/app/lilypad" EnvironmentFile=/app/lilypad/job-creator.env Environment="SERVICE_SOLVER=0x346d811cbb883548252418121f5bb0371eb07049" -Environment="SERVICE_MEDIATORS=0xA99fd5f0D91664417401F63d72a41eCdDC2d6961" +Environment="SERVICE_MEDIATORS=0xc66b9b74e307f30e7af79c03fee6ceb8b1ced997" Restart=always RestartSec=5s ExecStart=/usr/bin/lilypad jobcreator diff --git a/ops/systemd/resource-provider-gpu.service b/ops/systemd/resource-provider-gpu.service index dd4b4b4e..819c27d5 100644 --- a/ops/systemd/resource-provider-gpu.service +++ b/ops/systemd/resource-provider-gpu.service @@ -10,7 +10,7 @@ Environment="HOME=/app/lilypad" Environment="OFFER_GPU=1" EnvironmentFile=/app/lilypad/resource-provider-gpu.env Environment="SERVICE_SOLVER=0x346d811cbb883548252418121f5bb0371eb07049" -Environment="SERVICE_MEDIATORS=0xA99fd5f0D91664417401F63d72a41eCdDC2d6961" +Environment="SERVICE_MEDIATORS=0xc66b9b74e307f30e7af79c03fee6ceb8b1ced997" Restart=always RestartSec=5s ExecStart=/usr/bin/lilypad resource-provider diff --git a/ops/systemd/resource-provider.service b/ops/systemd/resource-provider.service index 5c5e853b..1fa2f5fb 100644 --- a/ops/systemd/resource-provider.service +++ b/ops/systemd/resource-provider.service @@ -9,7 +9,7 @@ Environment="LOG_LEVEL=debug" Environment="HOME=/app/lilypad" EnvironmentFile=/app/lilypad/resource-provider.env Environment="SERVICE_SOLVER=0x346d811cbb883548252418121f5bb0371eb07049" -Environment="SERVICE_MEDIATORS=0xA99fd5f0D91664417401F63d72a41eCdDC2d6961" +Environment="SERVICE_MEDIATORS=0xc66b9b74e307f30e7af79c03fee6ceb8b1ced997" Restart=always RestartSec=5s ExecStart=/usr/bin/lilypad resource-provider diff --git a/pkg/options/services.go b/pkg/options/services.go index 7b4ccf3a..0a74e56c 100644 --- a/pkg/options/services.go +++ b/pkg/options/services.go @@ -10,7 +10,7 @@ import ( func GetDefaultServicesOptions() data.ServiceConfig { return data.ServiceConfig{ Solver: GetDefaultServeOptionString("SERVICE_SOLVER", "0x346d811cbb883548252418121f5bb0371eb07049"), - Mediator: GetDefaultServeOptionStringArray("SERVICE_MEDIATORS", []string{"0xA99fd5f0D91664417401F63d72a41eCdDC2d6961"}), + Mediator: GetDefaultServeOptionStringArray("SERVICE_MEDIATORS", []string{"0xc66b9b74e307f30e7af79c03fee6ceb8b1ced997"}), } }