Skip to content

Commit

Permalink
Removed a few temporary log messages. Changed the functests to be run…
Browse files Browse the repository at this point in the history
… to only two, prepared for debugging of GA
  • Loading branch information
kzangeli committed Oct 16, 2023
1 parent a148a42 commit ef3a007
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/functional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
test: [ 'functional_633_634', 'unit']
test: [ 'functional_146_146', functional_634_634 ]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 0 additions & 2 deletions src/lib/orionld/legacyDriver/legacyGetEntities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,6 @@ bool legacyGetEntities(void)
QueryContextRequest mongoRequest;
QueryContextResponse mongoResponse;

LM_W(("Getting entities on tenant '%s'", orionldState.tenantP->tenant));

if ((id == NULL) && (idPattern == NULL) && (type == NULL) && ((geometry == NULL) || (*geometry == 0)) && (attrs == NULL) && (q == NULL) && (local == false))
{
orionldError(OrionldBadRequestData,
Expand Down
2 changes: 0 additions & 2 deletions src/lib/orionld/legacyDriver/legacyGetEntity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -381,8 +381,6 @@ bool legacyGetEntity(void)
KjNode* regArray = NULL;
char* eId = orionldState.wildcard[0];

LM_W(("Retreiving entity '%s' from tenant '%s'", eId, orionldState.tenantP->tenant));

//
// Make sure the ID (eId) is a valid URI
//
Expand Down
2 changes: 0 additions & 2 deletions src/lib/orionld/legacyDriver/legacyPostEntities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,8 +169,6 @@ bool legacyPostEntities(void)
return false;
}

LM_W(("Creating an entity '%s' of type '%s' on tenant '%s'", entityId, entityType, orionldState.tenantP->tenant));

//
// NOTE
// payloadParseAndExtractSpecialFields() from orionldMhdConnectionTreat() decouples the entity id and type
Expand Down

0 comments on commit ef3a007

Please sign in to comment.