Skip to content

Commit

Permalink
[MAINTENANCE] remove core gx version print out at start of agent (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
TrangPham committed Apr 25, 2024
1 parent 9ac9047 commit c9c4ae4
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions great_expectations_cloud/agent/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ class GXAgent:

def __init__(self: Self):
agent_version: str = self.get_current_gx_agent_version()
great_expectations_version: str = self._get_current_great_expectations_version()
print(f"GX Agent version: {agent_version}")
print(f"Great Expectations version: {great_expectations_version}")
print("Initializing the GX Agent.")
self._set_http_session_headers()
self._config = self._get_config()
Expand Down Expand Up @@ -158,11 +156,6 @@ def get_current_gx_agent_version(cls) -> str:
version: str = metadata_version(cls._PYPI_GX_AGENT_PACKAGE_NAME)
return version

@classmethod
def _get_current_great_expectations_version(cls) -> str:
version: str = metadata_version(cls._PYPI_GREAT_EXPECTATIONS_PACKAGE_NAME)
return version

def _handle_event_as_thread_enter(self, event_context: EventContext) -> None:
"""Schedule _handle_event to run in a thread.
Expand Down

0 comments on commit c9c4ae4

Please sign in to comment.