added pools #14
@ -40,7 +40,7 @@ func CreatePoolPost(ctx context.Context, poolID models.PoolID, postID models.Pos
|
|||||||
return models.PoolPost{}, utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PoolIDIsWrongLength})
|
return models.PoolPost{}, utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PoolIDIsWrongLength})
|
||||||
Alphyron marked this conversation as resolved
Outdated
|
|||||||
}
|
}
|
||||||
|
|
||||||
if postID == "" {
|
if len(postID) == 0 {
|
||||||
Alphyron marked this conversation as resolved
Outdated
Alphyron
commented
Either you use len(postID) == 0 like in pool.go or you use this method in pool.go. But not both! Either you use len(postID) == 0 like in pool.go or you use this method in pool.go. But not both!
|
|||||||
return models.PoolPost{}, utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PostIDIsEmpty})
|
return models.PoolPost{}, utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PostIDIsEmpty})
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -96,7 +96,7 @@ func DeletePoolPost(ctx context.Context, poolID models.PoolID, postID models.Pos
|
|||||||
return utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PoolIDIsWrongLength})
|
return utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PoolIDIsWrongLength})
|
||||||
Alphyron marked this conversation as resolved
Outdated
Alphyron
commented
its not really to short, is just had a wrong length.... its not really to short, is just had a wrong length....
Alphyron
commented
Please recheck this, you want to check if the length nis not 25! Please recheck this, you want to check if the length nis not 25!
|
|||||||
}
|
}
|
||||||
|
|
||||||
if postID == "" {
|
if len(postID) == 0 {
|
||||||
return utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PostIDIsEmpty})
|
return utils.HandleError(ctx, span, localLogger, &otterError.EntityValidationFailed{Reason: otterError.PostIDIsEmpty})
|
||||||
Alphyron marked this conversation as resolved
Alphyron
commented
Either you use len(postID) == 0 like in pool.go or you use this method in pool.go. But not both! Either you use len(postID) == 0 like in pool.go or you use this method in pool.go. But not both!
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user
its not really to short, is just had a wrong length....
Please recheck this, you want to check if the length nis not 25!