Commit d916e4af authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-merge code cleanup

parent b5bd230d
Loading
Loading
Loading
Loading

.gitattributes

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
*.csv filter=lfs diff=lfs merge=lfs -text
*.tar filter=lfs diff=lfs merge=lfs -text
+0 −3
Original line number Diff line number Diff line
@@ -192,6 +192,3 @@ libyang/

# Other logs
**/logs/*.log.*


/cnit_test
 No newline at end of file
+1 −3
Original line number Diff line number Diff line
@@ -479,8 +479,6 @@ class ServiceServiceServicerImpl(ServiceServiceServicer):
                tasks_scheduler.execute_all()
                return Empty()

                            

        # Normal service
        # Feed TaskScheduler with this service and the sub-services and sub-connections related to this service.
        # TaskScheduler identifies inter-dependencies among them and produces a schedule of tasks (an ordered list of
+0 −3
Original line number Diff line number Diff line
@@ -90,9 +90,6 @@ COPY --chown=webui:webui src/bgpls_speaker/__init__.py bgpls_speaker/__init__.py
COPY --chown=webui:webui src/bgpls_speaker/client/. bgpls_speaker/client/
COPY --chown=webui:webui src/vnt_manager/__init__.py vnt_manager/__init__.py
COPY --chown=webui:webui src/vnt_manager/client/. vnt_manager/client/

COPY --chown=webui:webui src/tapi/client/. tapi/client/

COPY --chown=webui:webui src/webui/. webui/

# Start the service
+2 −7
Original line number Diff line number Diff line
@@ -30,10 +30,6 @@ def get_working_context() -> str:
def get_working_topology() -> str:
    return session['topology_uuid'] if 'topology_uuid' in session else '---'

def get_remote_address () -> str : 
     return session['tapi_endpoint'] if 'tapi_endpoint' in session else '---'


def liveness():
    pass

@@ -132,7 +128,6 @@ def create_app(use_config=None, web_app_root=None):
        'round'               : round,
        'get_working_context' : get_working_context,
        'get_working_topology': get_working_topology,
        'get_remote_address'  : get_remote_address,

        'is_deployed_bgpls'   : is_deployed_bgpls,
        'is_deployed_load_gen': is_deployed_load_gen,