Skip to content

Commit bcea9d5

Browse files
jcchrjpggvilaca
andauthored
replacing contact us links with GitHub issues location (#1511)
Co-authored-by: Joao Vilaca <[email protected]>
1 parent 1bff0a9 commit bcea9d5

File tree

31 files changed

+42
-43
lines changed

31 files changed

+42
-43
lines changed

interactive_ai/services/jobs/app/scheduler/kafka_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,8 +211,8 @@ def handle_task_event(event: dict, execution: FlyteWorkflowExecution, job: Job)
211211
task = next((step for step in list(job.step_details) if step.task_id == task_id), None)
212212
if state == JobTaskState.FAILED and message is None and task is not None and task.message is None:
213213
message = (
214-
"An issue was encountered while initializing this workload. Please retry or contact "
215-
"customer support if problem persists."
214+
"An issue was encountered while initializing this workload. Please retry or reach out to "
215+
"us on GitHub if problem persists."
216216
)
217217

218218
execution_type = Flyte.get_execution_type(execution)

interactive_ai/services/jobs/tests/unit/scheduler/test_kafka_handler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1084,8 +1084,8 @@ def test_handle_task_event_main_task_not_initiated(
10841084
start_time=None,
10851085
end_time=now(),
10861086
message=(
1087-
"An issue was encountered while initializing this workload. Please retry or contact "
1088-
"customer support if problem persists."
1087+
"An issue was encountered while initializing this workload. Please retry or reach out to "
1088+
"us on GitHub if problem persists."
10891089
),
10901090
progress=None,
10911091
)

interactive_ai/workflows/common/jobs_common/tasks/utils/progress.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def wrapper(*args, **kwargs) -> Callable:
179179
if isinstance(ex, TaskErrorMessage)
180180
else (
181181
f"{failure_message} (Code: {ex.__class__.__name__}). "
182-
"Please retry or contact customer support if problem persists."
182+
"Please retry or reach out to us on GitHub if problem persists."
183183
)
184184
)
185185
message += f" (ID: {JobMetadata.from_env_vars().id})"

interactive_ai/workflows/common/tests/unit/tasks/utils/test_progress.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,13 +202,13 @@ def test_function():
202202
[
203203
(
204204
Exception("Failure"),
205-
"Test function failed (Code: Exception). Please retry or contact customer support if "
205+
"Test function failed (Code: Exception). Please retry or reach out to us on GitHub if "
206206
"problem persists. (ID: job_id)",
207207
),
208208
(
209209
CommandInitializationFailedException("Failure"),
210-
"Test function failed (Code: CommandInitializationFailedException). Please retry or contact customer "
211-
"support if problem persists. (ID: job_id)",
210+
"Test function failed (Code: CommandInitializationFailedException). Please retry or reach out to us on "
211+
"GitHub if problem persists. (ID: job_id)",
212212
),
213213
],
214214
)

interactive_ai/workflows/train/job/tasks/evaluate_and_infer/evaluate_and_infer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ class EvaluationFailedException(CommandDeliberateFailureException, TaskErrorMess
144144
def __init__(self, *args) -> None: # noqa: ARG002
145145
msg = (
146146
"Training failed at evaluation stage. No model is saved from this training round. "
147-
"Please try again and if problem persists, contact our customer support team."
147+
"Please try again and if problem persists, reach out to us on GitHub."
148148
)
149149
super().__init__(msg)
150150

interactive_ai/workflows/train/tests/unit/tasks/evaluate_and_infer/test_evaluate_and_infer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def test_evaluate_and_infer_evaluate_failed(
200200
call(
201201
message=(
202202
"Training failed at evaluation stage. No model is saved from this training round. "
203-
"Please try again and if problem persists, contact our customer support team. (ID: job_id)"
203+
"Please try again and if problem persists, reach out to us on GitHub. (ID: job_id)"
204204
)
205205
),
206206
]
@@ -292,7 +292,7 @@ def test_evaluate_and_infer_post_model_acceptance_failed(
292292
call(
293293
message=(
294294
"Training failed at evaluation stage. No model is saved from this training round. "
295-
"Please try again and if problem persists, contact our customer support team. (ID: job_id)"
295+
"Please try again and if problem persists, reach out to us on GitHub. (ID: job_id)"
296296
)
297297
),
298298
]

platform/services/account/chart/templates/config-map.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ data:
6161
6262
<hr style="color:#E9EAEB; width:100%;margin:24px 0;"/>
6363
64-
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://supporttickets.intel.com/supportrequest?lang=en-US&productId=233385:15548" target="_blank">contact technical support</a></span>.
64+
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://github.com/open-edge-platform/geti/issues" target="_blank">reach out to us on GitHub</a></span>.
6565
</div>
6666
</div>
6767
</div>
@@ -123,7 +123,7 @@ data:
123123
124124
<hr style="color:#E9EAEB; width:100%;margin:24px 0;"/>
125125
126-
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://supporttickets.intel.com/supportrequest?lang=en-US&productId=233385:15548" target="_blank">contact technical support</a></span>.
126+
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://github.com/open-edge-platform/geti/issues" target="_blank">reach out to us on GitHub</a></span>.
127127
</div>
128128
</div>
129129
</div>
@@ -186,7 +186,7 @@ data:
186186
187187
<hr style="color:#E9EAEB; width:100%;margin:24px 0;"/>
188188
189-
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://supporttickets.intel.com/supportrequest?lang=en-US&productId=233385:15548" target="_blank">contact technical support</a></span>.
189+
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://github.com/open-edge-platform/geti/issues" target="_blank">reach out to us on GitHub</a></span>.
190190
</div>
191191
</div>
192192
</div>
@@ -242,7 +242,7 @@ data:
242242
243243
<hr style="color:#E9EAEB; width:100%;margin:24px 0;"/>
244244
245-
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://supporttickets.intel.com/supportrequest?lang=en-US&productId=233385:15548" target="_blank">contact technical support</a></span>.
245+
<span style="font-size:12px;color:#6A6D75">If you require assistance, <a href="https://github.com/open-edge-platform/geti/issues" target="_blank">reach out to us on GitHub</a></span>.
246246
</div>
247247
</div>
248248
</div>

web_ui/packages/smart-tools/src/grabcut/grabcut.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (C) 2022-2025 Intel Corporation
22
// LIMITED EDGE SOFTWARE DISTRIBUTION LICENSE
33

4-
import { OpenCVTypes } from '../opencv/interfaces';
4+
import type { OpenCVTypes } from '../opencv/interfaces';
55
import { Point, Polygon, Rect } from '../shared/interfaces';
66
import { OpenCVLoader } from '../utils/opencv-loader';
77
import { approximateShape, getMatFromPoints, getPointsFromMat } from '../utils/tool-utils';

web_ui/packages/smart-tools/src/grabcut/interfaces.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (C) 2022-2025 Intel Corporation
22
// LIMITED EDGE SOFTWARE DISTRIBUTION LICENSE
33

4-
import { OpenCVTypes } from '../opencv/interfaces';
4+
import type { OpenCVTypes } from '../opencv/interfaces';
55
import { Point, Rect } from '../shared/interfaces';
66

77
export interface GrabcutDependencies {

web_ui/packages/smart-tools/src/inference-image/inference-image.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (C) 2022-2025 Intel Corporation
22
// LIMITED EDGE SOFTWARE DISTRIBUTION LICENSE
33

4-
import { OpenCVTypes } from '../opencv/interfaces';
4+
import type { OpenCVTypes } from '../opencv/interfaces';
55
import { OpenCVLoader } from '../utils/opencv-loader';
66
import { formatImageData } from '../utils/tool-utils';
77

0 commit comments

Comments
 (0)