Skip to content
Snippets Groups Projects
Commit c6ed61ef authored by Reinder Kraaij's avatar Reinder Kraaij :eye:
Browse files

Merge branch 'fix-naming' into 'master'

fix naming

See merge request !1080
parents f3ad287a 4df02a6f
No related branches found
No related tags found
1 merge request!1080fix naming
Pipeline #114614 canceled
Pipeline: tango

#114615

    ......@@ -249,6 +249,7 @@ docker_build_image_device_base:
    .run_integration_tests:
    allow_failure: true
    stage: integration
    image: docker:latest
    needs:
    ......@@ -310,6 +311,7 @@ run_service_test_docker:
    - bash -e $CI_PROJECT_DIR/sbin/run_integration_test.sh --no-build --skip-tests --module="services" --station=cs
    run_multi_project_integration_test:
    allow_failure: true
    stage: integration
    needs:
    - docker_build_image_device_base
    ......
    ......@@ -150,6 +150,7 @@ Next change the version in the following places:
    through [https://git.astron.nl/lofar2.0/tango/-/tags](Deploy Tags)
    # Release Notes
    * 0.48.2 rename antennafield_id
    * 0.48.1 Fix exposing correct triangle of XSTs in gRPC service
    * 0.48.0 Add Antennafield to gRPC server
    * 0.47.2 Fix ZMQ hostname to subscribe to in gRPC server
    ......
    ......@@ -2,7 +2,7 @@
    # order of appearance. Changing the order has an impact on the overall
    # integration process, which may cause wedges in the gate later.
    lofar-sid >= 1.0.16 # Apache 2
    lofar-sid >= 1.0.17 # Apache 2
    lofar-lotus>=0.0.4 # Apache 2
    PyTango>=10.0.0 # LGPL v3
    numpy>=1.21.6 # BSD3
    ......
    0.48.1
    0.48.2
    ......@@ -46,8 +46,8 @@ class Antennafield(antennafield_pb2_grpc.AntennafieldServicer):
    except (AttributeError, IndexError) as ex:
    raise ValueError(
    f"Could not access device attribute for Antennafield_id="
    f"{identifier.Antennafield_id=} "
    f"Could not access device attribute for antennafield_id="
    f"{identifier.antennafield_id} "
    ) from ex
    return AntennafieldReply(
    ......@@ -62,13 +62,13 @@ class Antennafield(antennafield_pb2_grpc.AntennafieldServicer):
    @reply_on_exception(AntennafieldReply)
    @call_exception_metrics("Antennafield")
    def GetAntennafieldPower(self, request: GetAntennafieldRequest, context):
    return self._get_Antennafield_reply(request.identifier.Antennafield_id)
    return self._get_Antennafield_reply(request.identifier.antennafield_id)
    @reply_on_exception(AntennafieldReply)
    @call_exception_metrics("Antennafield")
    def SetAntennafieldPower(self, request: SetAntennafieldRequest, context):
    antenna_field = AntennaDeviceProxyFactory.create_device_proxy_for_antennafield(
    request.identifier.Antennafield_id, True
    request.identifier.antennafield_id, True
    )
    stationmanager = create_device_proxy("STAT/StationManager/1")
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment