Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ repos:
name: golangci-lint (api-service)
files: ^api-service/
args: [--timeout=5m]
entry: bash -c 'cd api-service && golangci-lint run --timeout=5m'
entry: bash -c 'cd api-service && golangci-lint run -v --timeout=5m'
pass_filenames: false
- id: golangci-lint
name: golangci-lint (controller)
Expand Down
6 changes: 0 additions & 6 deletions aenv/src/cli/extends/artifacts/artifacts_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,17 +206,11 @@ def _build_image(
)
# Process streaming build logs
current_step = 0
# last_output_time = time.time()
# heartbeat_interval = 30 # Show heartbeat every 30 seconds if no output
# last_heartbeat_time = time.time()

for log_line in response:
if not log_line:
continue

# current_time = time.time()
# last_output_time = current_time

# Handle different types of log messages
if "stream" in log_line:
stream_text = log_line["stream"].strip()
Expand Down
Loading