Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sovietaced committed Nov 26, 2024
1 parent d0d1a6c commit 84b45bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ func TestSchedulerReconciler_createIngress(t *testing.T) {

input := v1alpha1.ArmadaServer{
TypeMeta: metav1.TypeMeta{
Kind: "armadaserver",
Kind: "ArmadaServer",
APIVersion: "install.armadaproject.io/v1alpha1",
},
ObjectMeta: metav1.ObjectMeta{
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/install/binoculars_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ func TestSchedulerReconciler_createBinocularsIngress(t *testing.T) {

input := v1alpha1.Binoculars{
TypeMeta: metav1.TypeMeta{
Kind: "binoculars",
Kind: "Binoculars",
APIVersion: "install.armadaproject.io/v1alpha1",
},
ObjectMeta: metav1.ObjectMeta{
Expand Down
2 changes: 1 addition & 1 deletion internal/controller/install/common_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ func ExtractPulsarConfig(config runtime.RawExtension) (PulsarConfig, error) {
if err != nil {
return PulsarConfig{}, err
}
return asConfig.Pulsar, err
return asConfig.Pulsar, nil
}

// GetServerScheme returns the URI scheme for the grpc server
Expand Down

0 comments on commit 84b45bd

Please sign in to comment.