Skip to content

Commit

Permalink
Fix mediator addresses
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorlin committed Mar 19, 2024
1 parent d5df52b commit 2799bbe
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ops/systemd/job-creator.service
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ops/systemd/resource-provider-gpu.service
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ops/systemd/resource-provider.service
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/options/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"}),
}
}

Expand Down

0 comments on commit 2799bbe

Please sign in to comment.