Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
muriloAvlis committed Jun 11, 2024
1 parent 3c19e3a commit fbaf254
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ Add a paragraph about the application here...

## Getting Started

### Installing the xApp
## Using Docker image

```shell
docker container run -itd --name iqos-xapp -e NEAR_RIC_IP="<NEAR_RIC_IP>" muriloavlis/iqos-xapp:latest
```

### Building the xApp

Clone the xApp repository with the following command.

Expand Down
3 changes: 1 addition & 2 deletions src/kpmManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,7 @@ namespace KpmManager
kpm_ind_msg_format_3_t const* msg_frm_3{&ind->msg.frm_3}; // ind message

static int counter = 1;
u_int64_t now{get_time_now_us()};
u_int64_t latency{now - hdr_frm_1->collectStartTime};
u_int64_t latency{get_time_now_us() - hdr_frm_1->collectStartTime};

// create a new scope
{
Expand Down

0 comments on commit fbaf254

Please sign in to comment.