-
Notifications
You must be signed in to change notification settings - Fork 7.1k
Open
Labels
P2Important issue, but not time-criticalImportant issue, but not time-criticalbugSomething that is supposed to be working; but isn'tSomething that is supposed to be working; but isn'tcommunity-backlogcoreIssues that should be addressed in Ray CoreIssues that should be addressed in Ray CoreenhancementRequest for new feature and/or capabilityRequest for new feature and/or capabilitygood-first-issueGreat starter issue for someone just starting to contribute to RayGreat starter issue for someone just starting to contribute to Rayhelp-wanted
Description
What happened + What you expected to happen
ray::Status supports appending new content into the internal message string, but it doesn't supports all types.
Lines 330 to 334 in c796717
| template <typename... T> | |
| Status &operator<<(T &&...msg) { | |
| absl::StrAppend(&state_->msg, std::forward<T>(msg)...); | |
| return *this; | |
| } |
One concrete example might be directory dentry: https://en.cppreference.com/w/cpp/filesystem/directory_entry
Versions / Dependencies
N/A
Reproduction script
N/A
Issue Severity
None
Metadata
Metadata
Assignees
Labels
P2Important issue, but not time-criticalImportant issue, but not time-criticalbugSomething that is supposed to be working; but isn'tSomething that is supposed to be working; but isn'tcommunity-backlogcoreIssues that should be addressed in Ray CoreIssues that should be addressed in Ray CoreenhancementRequest for new feature and/or capabilityRequest for new feature and/or capabilitygood-first-issueGreat starter issue for someone just starting to contribute to RayGreat starter issue for someone just starting to contribute to Rayhelp-wanted